summaryrefslogtreecommitdiffstats
path: root/subcmds/upload.py
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2013-03-06 00:46:45 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-03-06 00:46:45 +0000
commit3ee6ffd07852c184feef5afd695d80a3f9a0db79 (patch)
tree7e6e44db4a785a52579589f81de88fb16564c1f3 /subcmds/upload.py
parent28db6ffef48138fc97aca9fbf0d774ac26a41c70 (diff)
parent2f9e7e40c44acae37d0c263c212956ef6038c35b (diff)
downloadgit-repo-3ee6ffd07852c184feef5afd695d80a3f9a0db79.tar.gz
Merge "Fix: Missing spaces in printed messages"
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 e314032a..48ee685c 100644
--- a/subcmds/upload.py
+++ b/subcmds/upload.py
@@ -27,11 +27,11 @@ UNUSUAL_COMMIT_THRESHOLD = 5
27 27
28def _ConfirmManyUploads(multiple_branches=False): 28def _ConfirmManyUploads(multiple_branches=False):
29 if multiple_branches: 29 if multiple_branches:
30 print('ATTENTION: One or more branches has an unusually high number' 30 print('ATTENTION: One or more branches has an unusually high number '
31 'of commits.') 31 'of commits.')
32 else: 32 else:
33 print('ATTENTION: You are uploading an unusually high number of commits.') 33 print('ATTENTION: You are uploading an unusually high number of commits.')
34 print('YOU PROBABLY DO NOT MEAN TO DO THIS. (Did you rebase across' 34 print('YOU PROBABLY DO NOT MEAN TO DO THIS. (Did you rebase across '
35 'branches?)') 35 'branches?)')
36 answer = raw_input("If you are sure you intend to do this, type 'yes': ").strip() 36 answer = raw_input("If you are sure you intend to do this, type 'yes': ").strip()
37 return answer == "yes" 37 return answer == "yes"