Skip to content

Commit

Permalink
Fix bug in changelog script [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
djungelorm committed Dec 16, 2016
1 parent 8877b78 commit 9a80a44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/dist/changes.py
Expand Up @@ -81,7 +81,7 @@ def get_changes(path):
changes[version] = []
changes[version].append(line[3:])
elif line.startswith(' '):
changes[version][0] += line[2:]
changes[version][-1] += line[2:]
else:
print('Invalid line in ' + path + ':')
print(line)
Expand Down

0 comments on commit 9a80a44

Please sign in to comment.