From: Benjamin Peterson Date: Tue, 24 Mar 2009 23:07:07 +0000 (+0000) Subject: another style nit X-Git-Tag: v2.7a1~1800 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0cdb2ddf27fbd485527bb9ca0ace6c8cf740fa6;p=thirdparty%2FPython%2Fcpython.git another style nit --- diff --git a/Lib/unittest.py b/Lib/unittest.py index aaed6a26d4d2..dde27fb95c9a 100644 --- a/Lib/unittest.py +++ b/Lib/unittest.py @@ -809,7 +809,8 @@ class _WritelnDecorator(object): return getattr(self.stream,attr) def writeln(self, arg=None): - if arg: self.write(arg) + if arg: + self.write(arg) self.write('\n') # text-mode streams translate to \r\n if needed