Looks like all we need is a new line

This commit is contained in:
Pierre-Yves Chibon 2017-04-18 14:22:38 +02:00
parent 678e30e837
commit dc5394c189

View file

@ -167,7 +167,7 @@ def run_as_post_receive_hook():
for commit in new_commits_list:
if DEBUG:
print('Diff of commit:', commit)
full_change += '\nCommit: %s\n' % commit
full_change += '\n'
for line in read_git_lines(['show', commit], abspath):
full_change += '%s\n' % line
if DEBUG: