diff options
author | Anthony King <anthonydking@slimroms.net> | 2015-06-03 17:02:26 +0100 |
---|---|---|
committer | David Pursehouse <david.pursehouse@sonymobile.com> | 2015-06-04 00:22:23 +0000 |
commit | b1d1fd778d5d3d3217023df8b428c5b7fa22a337 (patch) | |
tree | a26fa0c97b6e1f11cc09b2bc0c79a33cf392e4f4 | |
parent | be4456cf249f29371eef41bed4e15f6d3c1a2cc0 (diff) | |
download | git-repo-b1d1fd778d5d3d3217023df8b428c5b7fa22a337.tar.gz |
git_config: fix _SaveJson typo
Change-Id: I35ca2b3733e6d1508669f9a6690c6645c582912e
-rw-r--r-- | git_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
280 | finally: | 280 | finally: |
281 | fd.close() | 281 | fd.close() |
282 | except (IOError, TypeError): | 282 | except (IOError, TypeError): |
283 | if os.path.exists(self.json): | 283 | if os.path.exists(self._json): |
284 | os.remove(self._json) | 284 | os.remove(self._json) |
285 | 285 | ||
286 | def _ReadGit(self): | 286 | def _ReadGit(self): |