diff options
author | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 13:56:59 +0900 |
---|---|---|
committer | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 05:17:08 +0000 |
commit | e5913ae41058ddd7f692e9cc18e5f71b8251bd60 (patch) | |
tree | 94f099a0290d28da431ceaefa68ab00c6ac90b8d /subcmds/manifest.py | |
parent | 119085e6b180b513f7976f91fe56ead11a125d4b (diff) | |
download | git-repo-e5913ae41058ddd7f692e9cc18e5f71b8251bd60.tar.gz |
Fix flake8 E251 unexpected spaces around keyword / parameter equals
Fixed automatically with autopep8:
git ls-files | grep py$ | xargs autopep8 --in-place --select E251
Change-Id: I58009e1c8c91c39745d559ac919be331d4cd9e77
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254598
Tested-by: David Pursehouse <dpursehouse@collab.net>
Reviewed-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'subcmds/manifest.py')
-rw-r--r-- | subcmds/manifest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/manifest.py b/subcmds/manifest.py index 9c1b3f0c..6bb01045 100644 --- a/subcmds/manifest.py +++ b/subcmds/manifest.py | |||
@@ -66,8 +66,8 @@ in a Git repository for use during future 'repo init' invocations. | |||
66 | else: | 66 | else: |
67 | fd = open(opt.output_file, 'w') | 67 | fd = open(opt.output_file, 'w') |
68 | self.manifest.Save(fd, | 68 | self.manifest.Save(fd, |
69 | peg_rev = opt.peg_rev, | 69 | peg_rev=opt.peg_rev, |
70 | peg_rev_upstream = opt.peg_rev_upstream) | 70 | peg_rev_upstream=opt.peg_rev_upstream) |
71 | fd.close() | 71 | fd.close() |
72 | if opt.output_file != '-': | 72 | if opt.output_file != '-': |
73 | print('Saved manifest to %s' % opt.output_file, file=sys.stderr) | 73 | print('Saved manifest to %s' % opt.output_file, file=sys.stderr) |