Tidy up code formatting a bit more

Enable the following Pylint warnings:

  C0322: Operator not preceded by a space
  C0323: Operator not followed by a space
  C0324: Comma not followed by a space

And make the necessary fixes.

Change-Id: I74d74283ad5138cbaf28d492b18614eb355ff9fe
This commit is contained in:
David Pursehouse
2012-11-14 12:09:38 +09:00
parent c1b86a2323
commit 8f62fb7bd3
10 changed files with 28 additions and 28 deletions

View File

@ -556,7 +556,7 @@ class Project(object):
'--unmerged',
'--ignore-missing',
'--refresh')
if self.work_git.DiffZ('diff-index','-M','--cached',HEAD):
if self.work_git.DiffZ('diff-index', '-M', '--cached', HEAD):
return True
if self.work_git.DiffZ('diff-files'):
return True
@ -1880,7 +1880,7 @@ class Project(object):
self.level = self.level[1:]
info = info[1:].split(' ')
info =_Info(path, *info)
info = _Info(path, *info)
if info.status in ('R', 'C'):
info.src_path = info.path
info.path = out.next()