# HG changeset patch # User cmlenz # Date 1159348845 0 # Node ID d9d3b844442b5ffbacc5c6792fda8f39696607ab # Parent 63bdd030c49ff6a38b4eb15b0dccc3cecad74acf 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__':