Fix generation of URLs in README.md.

This commit is contained in:
Sebastian Lackner
2014-07-11 19:36:31 +02:00
parent 5c72aff53e
commit 32148424bd
2 changed files with 10 additions and 10 deletions

View File

@@ -249,7 +249,7 @@ def generate_readme(patches, fp):
fp.write("\n")
for i, patch in patches.iteritems():
for (bugid, bugname) in patch.fixes:
fp.write("* ([#%d](%s))\n" % (bugid, bugname))
fp.write("* ([Wine Bug #%d](http://bugs.winehq.org/show_bug.cgi?id=%d)) %s\n" % (bugid, bugid, bugname))
fp.write("\n")
fp.write("\n")
fp.write("Besides that the following additional changes are included:\n")