diff options
author | skilchen <skilchen@users.noreply.github.com> | 2018-04-13 22:57:10 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-04-13 22:57:10 +0200 |
commit | a3cf1cff5b06d7484449dc4131e75ab894d2f1ed (patch) | |
tree | 44f880f5084be41a0b55f7bb72a1b93b48417889 /tools | |
parent | e3037a2f33124edaaba92fec19b951c767eb74f5 (diff) | |
download | Nim-a3cf1cff5b06d7484449dc4131e75ab894d2f1ed.tar.gz |
make tools/nimweb.nim compileable with latest Nim (#7602)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/nimweb.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nimweb.nim b/tools/nimweb.nim index c8b87c1f2..6e1d9d359 100644 --- a/tools/nimweb.nim +++ b/tools/nimweb.nim @@ -418,7 +418,7 @@ proc generateRss(outputFilename: string, news: seq[TRssItem]) = href = rss.url), updatedDate(rss.year, rss.month, rss.day), "<author><name>Nim</name></author>", - content(xmltree.escape(rss.content), `type` = "text"), + content(xmltree.escape(rss.content), `type` = "text") )) output.write("""</feed>""") |