소스 검색

git_config: fix _SaveJson typo

Change-Id: I35ca2b3733e6d1508669f9a6690c6645c582912e
Anthony King 10 년 전
부모
커밋
b1d1fd778d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      git_config.py

+ 1 - 1
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):