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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0cdb2ddf27fbd485527bb9ca0ace6c8cf740fa6;p=python another style nit --- diff --git a/Lib/unittest.py b/Lib/unittest.py index aaed6a26d4..dde27fb95c 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