| Index: git_cl.py
|
| diff --git a/git_cl.py b/git_cl.py
|
| index 26f04fd8c8289ba838902f272f11346a7ef626c3..5ff11fc152c0d6e12e2124944ad8f152968001a5 100755
|
| --- a/git_cl.py
|
| +++ b/git_cl.py
|
| @@ -2394,7 +2394,9 @@ def SendUpstream(parser, args, cmd):
|
|
|
| commit_desc = ChangeDescription(change_desc.description)
|
| if cl.GetIssue():
|
| - commit_desc.append_footer('Review URL: %s' % cl.GetIssueURL())
|
| + # Xcode won't linkify this URL unless there is a non-whitespace character
|
| + # after it. Add a period on a new line to circumvent this.
|
| + commit_desc.append_footer('Review URL: %s.' % cl.GetIssueURL())
|
| if options.contributor:
|
| commit_desc.append_footer('Patch from %s.' % options.contributor)
|
|
|
|
|