Browse Source
Merge pull request #700 from trapexit/changelog
python 2.6 fix
pull/701/head
trapexit
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
tools/git2debcl
|
@ -99,13 +99,13 @@ def main(): |
|
|
tag = prev |
|
|
tag = prev |
|
|
continue |
|
|
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: |
|
|
for line in lines: |
|
|
print(" * " + line) |
|
|
print(" * " + line) |
|
|
|
|
|
|
|
|
authorandtime = git_author_and_time(tag[1]) |
|
|
authorandtime = git_author_and_time(tag[1]) |
|
|
print(' {}\n'.format(authorandtime)) |
|
|
|
|
|
|
|
|
print(' {0}\n'.format(authorandtime)) |
|
|
|
|
|
|
|
|
tag = prev |
|
|
tag = prev |
|
|
|
|
|
|
|
|