diff options
author | David Pursehouse <david.pursehouse@sonymobile.com> | 2012-11-14 12:09:38 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@sonymobile.com> | 2012-11-14 12:09:38 +0900 |
commit | 8f62fb7bd305337994bced7d23b347d0d39f5faf (patch) | |
tree | 7a00915a4e6138fe2c12d6f8d181b623df8962a2 /subcmds/upload.py | |
parent | c1b86a232383748811c6faf17f364e63e10f7dd4 (diff) | |
download | git-repo-8f62fb7bd305337994bced7d23b347d0d39f5faf.tar.gz |
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
Diffstat (limited to 'subcmds/upload.py')
-rw-r--r-- | subcmds/upload.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/upload.py b/subcmds/upload.py index 219c5093..e314032a 100644 --- a/subcmds/upload.py +++ b/subcmds/upload.py | |||
@@ -50,7 +50,7 @@ def _SplitEmails(values): | |||
50 | class Upload(InteractiveCommand): | 50 | class Upload(InteractiveCommand): |
51 | common = True | 51 | common = True |
52 | helpSummary = "Upload changes for code review" | 52 | helpSummary = "Upload changes for code review" |
53 | helpUsage=""" | 53 | helpUsage = """ |
54 | %prog [--re --cc] [<project>]... | 54 | %prog [--re --cc] [<project>]... |
55 | """ | 55 | """ |
56 | helpDescription = """ | 56 | helpDescription = """ |
@@ -397,7 +397,7 @@ Gerrit Code Review: http://code.google.com/p/gerrit/ | |||
397 | reviewers = _SplitEmails(opt.reviewers) | 397 | reviewers = _SplitEmails(opt.reviewers) |
398 | if opt.cc: | 398 | if opt.cc: |
399 | cc = _SplitEmails(opt.cc) | 399 | cc = _SplitEmails(opt.cc) |
400 | people = (reviewers,cc) | 400 | people = (reviewers, cc) |
401 | 401 | ||
402 | if not pending: | 402 | if not pending: |
403 | print("no branches ready for upload", file=sys.stderr) | 403 | print("no branches ready for upload", file=sys.stderr) |