# HG changeset patch # User cmlenz # Date 1159348845 0 # Node ID a1adae30bfebcf0b5741590f10068c1b6ef9afb7 # Parent 4255e4bad99b449d216980f83f22573f207ce0d1 The [WebPy web.py] example was generating extraneous line breaks. diff --git a/examples/webpy/hello.py b/examples/webpy/hello.py --- a/examples/webpy/hello.py +++ b/examples/webpy/hello.py @@ -20,7 +20,7 @@ web.header('Content-Type', 'text/html; charset=utf-8', unique=True) for output in stream.serialize('html'): - print output.encode('utf-8') + print output.encode('utf-8'), if __name__ == '__main__':