Merge pull request #700 from trapexit/changelog

python 2.6 fix
This commit is contained in:
trapexit 2020-01-22 16:49:07 -05:00 committed by GitHub
commit 7b355b279d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,13 +99,13 @@ def main():
tag = prev
continue
print('{} ({}) {}; urgency={}\n'.format(args.name,tag[0],args.codename,args.urgency))
print('{0} ({1}) {2}; urgency={3}\n'.format(args.name,tag[0],args.codename,args.urgency))
for line in lines:
print(" * " + line)
authorandtime = git_author_and_time(tag[1])
print(' {}\n'.format(authorandtime))
print(' {0}\n'.format(authorandtime))
tag = prev