summaryrefslogtreecommitdiffstats
path: root/subcmds/sync.py
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2012-10-25 12:23:11 +0900
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2012-10-30 10:28:20 +0900
commit1d947b30342163b723c96db563967323535fef45 (patch)
treeb6b02d02df01792b356b9e50ceeaadcaf3a2e8c5 /subcmds/sync.py
parent2d113f35460051823ea54d61c5c939565518f969 (diff)
downloadgit-repo-1d947b30342163b723c96db563967323535fef45.tar.gz
Even more coding style cleanup
Fixing some more pylint warnings: W1401: Anomalous backslash in string W0623: Redefining name 'name' from outer scope W0702: No exception type(s) specified E0102: name: function already defined line n Change-Id: I5afcdb4771ce210390a79981937806e30900a93c
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r--subcmds/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index d4637d0c..8e9477a3 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -696,7 +696,7 @@ class _FetchTimes(object):
696 try: 696 try:
697 try: 697 try:
698 self._times = pickle.load(f) 698 self._times = pickle.load(f)
699 except: 699 except IOError:
700 try: 700 try:
701 os.remove(self._path) 701 os.remove(self._path)
702 except OSError: 702 except OSError: