diff options
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) |