[Zpt] CVS: Packages/TAL - TALInterpreter.py:1.17
guido@digicool.com
guido@digicool.com
Thu, 15 Mar 2001 17:07:09 -0500 (EST)
Update of /cvs-repository/Packages/TAL
In directory korak:/tmp/cvs-serv10128
Modified Files:
TALInterpreter.py
Log Message:
Make sure the output always ends in a newline.
--- Updated File TALInterpreter.py in package Packages/TAL --
--- TALInterpreter.py 2001/02/15 17:08:47 1.16
+++ TALInterpreter.py 2001/03/15 22:07:08 1.17
@@ -133,6 +133,8 @@
else:
self.endsep = "/>"
self.interpret(self.program)
+ if self.col > 0:
+ self.stream_write("\n")
col = 0