1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 01:06:17 +02:00

- get_source_file_diff returns a list instead of a str

This commit is contained in:
Marcus Huewe 2010-08-31 16:13:16 +02:00
parent f5c5ee10d0
commit d8723ef94a

View File

@ -5170,7 +5170,7 @@ def get_commit_message_template(pac):
"""
Read the difference in .changes file(s) and put them as a template to commit message.
"""
diff = ""
diff = []
template = []
files = [i for i in pac.todo if i.endswith('.changes') and pac.status(i) in ('A', 'M')]
@ -5184,7 +5184,7 @@ def get_commit_message_template(pac):
f.close()
if diff:
template = parse_diff_for_commit_message(diff)
template = parse_diff_for_commit_message(''.join(diff))
return template