Skip to content

Commit

Permalink
Typos and formatting of message.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrioux committed Oct 13, 2012
1 parent 98fed88 commit 685f591
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion git-cl
Expand Up @@ -628,7 +628,7 @@ def CmdUpload(args):
log_args = args[:] # Hope for the best!
desc = RunGit(['log', '--pretty=format:%s\n\n%b'] + log_args)
initial_text = """# Enter a description of the change.
# This will displayed on the codereview site.
# This will be displayed on the codereview site.
# The first line will also be used as the subject of the review."""
desc = UserEditedLog(initial_text + '\n' + desc)
if not desc:
Expand Down
3 changes: 2 additions & 1 deletion projecthosting_upload.py
Expand Up @@ -137,7 +137,8 @@ def find_fix_issue_id(self, text):
def query_user(self, issue = None) :
query_string1 = "We were not able to associate this patch with a google tracker issue." if issue == None else str(issue)+" will not be used as a google tracker number."
print query_string1
info = raw_input("Please enter a valid google tracker issue number (or enter nothing to create a new issue): ")
info = raw_input("Please enter a valid google tracker issue number\n"
"(or enter nothing to create a new issue): ")
while (info != '') and (not string_is_number(info)) :
info = raw_input("This is an invalid entry. Please enter either an issue number (just digits, no spaces) or nothing to create an issue: ")
if info == '' :
Expand Down

0 comments on commit 685f591

Please sign in to comment.