Added two spaces before in-line # comments.

This commit is contained in:
Bob Lantz
2010-03-24 14:41:40 -07:00
parent 353411422e
commit cf6f67045b
6 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -40,8 +40,8 @@ class StreamHandlerNoNewline( logging.StreamHandler ):
traceback.printException and appended to the stream."""
try:
msg = self.format( record )
fs = '%s' # was '%s\n'
if not hasattr( types, 'UnicodeType' ): #if no unicode support...
fs = '%s' # was '%s\n'
if not hasattr( types, 'UnicodeType' ): # if no unicode support...
self.stream.write( fs % msg )
else:
try: