1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-27 07:06:13 +01:00

- always add a newline (even if no template is specified so that the user can directly enter the msg)

This commit is contained in:
Marcus Hüwe 2009-06-17 18:18:12 +00:00
parent bde7cb79c8
commit c9eec70b74

View File

@ -2017,7 +2017,7 @@ def edit_message(footer='', template=''):
f = os.fdopen(fd, 'w')
if template != '':
f.write(template)
f.write('\n')
f.write('\n')
f.write(delim)
f.close()
mtime_orig = os.stat(filename).st_mtime