From 392e27da7b2a0a47ddf3ae30dd32bbb2bbdb539d Mon Sep 17 00:00:00 2001 From: Steven Bird Date: Sat, 5 Dec 2015 13:09:45 -0800 Subject: [PATCH] include final carriage return, cf https://github.com/reedloden/nltk_data/commit/1f83689cc050197c2a19ab3a1fa064084f3ad4c2#diff-7323624b83e1dea8ba3cdf1fdfeb8d5cR325 --- tools/build_pkg_index.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/build_pkg_index.py b/tools/build_pkg_index.py index 6aeeaa7..d84cfed 100755 --- a/tools/build_pkg_index.py +++ b/tools/build_pkg_index.py @@ -27,5 +27,6 @@ out = open(OUT, 'w') out.write(xml_header) out.write(s) +out.write('\n') out.close()