commit 4fd774d0ff89f8917edb26803cb3bcace5b1d42d
parent 8c19a9a378019ef669843c7082bb64512aaec886
Author: rsiddharth <s@ricketyspace.net>
Date: Thu, 9 Feb 2017 02:40:47 +0000
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:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)