summaryrefslogtreecommitdiffstats
path: root/gd_diff.py
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2017-02-09 02:40:47 +0000
committerrsiddharth <s@ricketyspace.net>2017-02-09 02:40:47 +0000
commit4fd774d0ff89f8917edb26803cb3bcace5b1d42d (patch)
tree844f5aa547590eabcdf26190d5a468acd3804126 /gd_diff.py
parent8c19a9a378019ef669843c7082bb64512aaec886 (diff)
Fix moinmoin row markup generation.
The moinmoin row markup generated by `construct_table_row` now ends with a "||". * gd_diff.py (construct_table_row): Update function.
Diffstat (limited to 'gd_diff.py')
-rw-r--r--gd_diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gd_diff.py b/gd_diff.py
index d72a510..6f3c0e3 100644
--- a/gd_diff.py
+++ b/gd_diff.py
@@ -373,7 +373,7 @@ def construct_table_row(release, pkg, change, reason):
more_info_link = readme_link_fmt.format(release, pkg)
- return '||{}||{}||{}||[[{}|more_info]]'.format(pkg, change, reason,
+ return '||{}||{}||{}||[[{}|more_info]]||'.format(pkg, change, reason,
more_info_link)