Skip to content

Commit

Permalink
do_submitrequest: missing newline before diff in message
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-schwab authored and adrianschroeter committed Feb 1, 2013
1 parent 7ef8bee commit 8f38f33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osc/commandline.py
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ def do_submitrequest(self, subcmd, opts, *args):
rdiff = None
if opts.diff or not opts.message:
try:
rdiff = 'old: %s/%s\nnew: %s/%s rev %s' %(dst_project, dst_package, src_project, src_package, rev)
rdiff = 'old: %s/%s\nnew: %s/%s rev %s\n' %(dst_project, dst_package, src_project, src_package, rev)
rdiff += server_diff(apiurl,
dst_project, dst_package, None,
src_project, src_package, rev, True)
Expand Down

0 comments on commit 8f38f33

Please sign in to comment.