summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--subcmds/upload.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/subcmds/upload.py b/subcmds/upload.py
index 1172dadc..38c061df 100644
--- a/subcmds/upload.py
+++ b/subcmds/upload.py
@@ -198,7 +198,8 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
198 commit_list = branch.commits 198 commit_list = branch.commits
199 199
200 destination = opt.dest_branch or project.dest_branch or project.revisionExpr 200 destination = opt.dest_branch or project.dest_branch or project.revisionExpr
201 print('Upload project %s/ to remote branch %s:' % (project.relpath, destination)) 201 print('Upload project %s/ to remote branch %s%s:' %
202 (project.relpath, destination, ' (draft)' if opt.draft else ''))
202 print(' branch %s (%2d commit%s, %s):' % ( 203 print(' branch %s (%2d commit%s, %s):' % (
203 name, 204 name,
204 len(commit_list), 205 len(commit_list),