1
0
Fork 0

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
This commit is contained in:
David Pursehouse 2012-10-25 12:23:11 +09:00
parent 2d113f3546
commit 1d947b3034
12 changed files with 24 additions and 24 deletions

View file

@ -138,14 +138,14 @@ class GitRefs(object):
def _ReadLoose1(self, path, name):
try:
fd = open(path, 'rb')
except:
except IOError:
return
try:
try:
mtime = os.path.getmtime(path)
ref_id = fd.readline()
except:
except (IOError, OSError):
return
finally:
fd.close()