From b1d1fd778d5d3d3217023df8b428c5b7fa22a337 Mon Sep 17 00:00:00 2001 From: Anthony King Date: Wed, 3 Jun 2015 17:02:26 +0100 Subject: [PATCH] git_config: fix _SaveJson typo Change-Id: I35ca2b3733e6d1508669f9a6690c6645c582912e --- git_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_config.py b/git_config.py index c4c31e18..8ded7c25 100644 --- a/git_config.py +++ b/git_config.py @@ -280,7 +280,7 @@ class GitConfig(object): finally: fd.close() except (IOError, TypeError): - if os.path.exists(self.json): + if os.path.exists(self._json): os.remove(self._json) def _ReadGit(self):