summaryrefslogtreecommitdiffstats
path: root/subcmds/upload.py
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2012-11-14 12:09:38 +0900
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2012-11-14 12:09:38 +0900
commit8f62fb7bd305337994bced7d23b347d0d39f5faf (patch)
tree7a00915a4e6138fe2c12d6f8d181b623df8962a2 /subcmds/upload.py
parentc1b86a232383748811c6faf17f364e63e10f7dd4 (diff)
downloadgit-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.py4
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):
50class Upload(InteractiveCommand): 50class 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)