commit | 26a1ac462ce07405845675222a66eba2b5bed132 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Oct 17 13:34:01 2002 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Oct 17 13:34:01 2002 +0000 |
tree | 9e691773aa79b42e7181df7cf144ac3005c4046e | |
parent | 48123b266cd8d041ca6d66f148c3a6c054b2cc00 [diff] [blame] |
Add trailing newline when saving.
diff --git a/Demo/cgi/cgi3.py b/Demo/cgi/cgi3.py index 9aad3a0..205f63d 100755 --- a/Demo/cgi/cgi3.py +++ b/Demo/cgi/cgi3.py
@@ -111,6 +111,8 @@ try: f = open(self.mkfile(), "w") f.write(data) + if data and not data.endswith('\n'): + f.write('\n') f.close() return "" except IOError, err: