You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
Attempt to escape quotation marks in generated README.md.
This commit is contained in:
3
debian/tools/patchupdate.py
vendored
3
debian/tools/patchupdate.py
vendored
@ -450,7 +450,8 @@ def generate_readme(all_patches, fp):
|
||||
if bugid is not None: all_bugs.append((bugid, bugname, description))
|
||||
for (bugid, bugname, description) in sorted(all_bugs):
|
||||
if description is None: description = bugname
|
||||
yield "%s ([Wine Bug #%d](http://bugs.winehq.org/show_bug.cgi?id=%d \"%s\"))" % (description, bugid, bugid, bugname)
|
||||
yield "%s ([Wine Bug #%d](http://bugs.winehq.org/show_bug.cgi?id=%d \"%s\"))" % \
|
||||
(description, bugid, bugid, bugname.replace("\\", "\\\\").replace("\"", "\\\""))
|
||||
|
||||
# Get list of all fixes
|
||||
def _all_fixes():
|
||||
|
Reference in New Issue
Block a user