diff --git a/git_cl.py b/git_cl.py index b30cdb360..cb1334056 100755 --- a/git_cl.py +++ b/git_cl.py @@ -902,7 +902,7 @@ def _create_description_from_log(args): log_args = [args[0] + '..' + args[1]] else: log_args = args[:] # Hope for the best! - return RunGit(['log', '--pretty=format:%B'] + log_args) + return RunGit(['log', '--pretty=format:%B%n'] + log_args) class GerritChangeNotExists(Exception):