| Index: git_cl.py
|
| diff --git a/git_cl.py b/git_cl.py
|
| index 92c6cce5b244aacd8d5c6fc461babcca7042c6e0..3023213ddd903a9d696f48eea7c79f04964f079e 100755
|
| --- a/git_cl.py
|
| +++ b/git_cl.py
|
| @@ -2021,7 +2021,7 @@ def GerritUpload(options, args, cl, change):
|
| if options.squash:
|
| # Try to get the message from a previous upload.
|
| shadow_branch = 'refs/heads/git_cl_uploads/' + cl.GetBranch()
|
| - message = RunGitSilent(['show', '--format=%s\n\n%b', '-s', shadow_branch])
|
| + message = RunGitSilent(['show', '--format=%B', '-s', shadow_branch])
|
| if not message:
|
| if not options.force:
|
| change_desc.prompt()
|
|
|