Index: git_cl.py |
diff --git a/git_cl.py b/git_cl.py |
index 3ee62f6b3a2a5ef25c564313fc0dc9e078107890..b386cf6ca4be73e37e542b5f73a05f1c295fff43 100755 |
--- a/git_cl.py |
+++ b/git_cl.py |
@@ -1668,7 +1668,9 @@ def SendUpstream(parser, args, cmd): |
if options.contributor: |
commit_desc.append_footer('Patch from %s.' % options.contributor) |
- print 'Description:', repr(commit_desc.description) |
+ print 'Description:' |
+ for line in commit_desc.description.split('\n'): |
M-A Ruel
2013/08/15 19:12:51
What's the difference between this and "print comm
agable
2013/08/15 20:25:24
There's not; I was just being dumb.
There doesn't
|
+ print line |
branches = [base_branch, cl.GetBranchRef()] |
if not options.force: |