]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
windows/fixups.py: fix paste-o in name of Unicode stderr wrapper.
authordavid-sarah <david-sarah@jacaranda.org>
Mon, 26 Jul 2010 21:47:36 +0000 (14:47 -0700)
committerdavid-sarah <david-sarah@jacaranda.org>
Mon, 26 Jul 2010 21:47:36 +0000 (14:47 -0700)
src/allmydata/windows/fixups.py

index dcedd1746392ddb0688204818ed4392e9f188224..ea23500c4abadad9ed43ad7092edc4882e9df411 100644 (file)
@@ -152,7 +152,7 @@ def initialize():
             if real_stderr:
                 sys.stderr = UnicodeOutput(hStderr, None, STDERR_FILENO, '<Unicode console stderr>')
             else:
-                sys.stderr = UnicodeOutput(None, sys.stderr, old_stderr_fileno, '<Unicode redirected stdout>')
+                sys.stderr = UnicodeOutput(None, sys.stderr, old_stderr_fileno, '<Unicode redirected stderr>')
     except Exception, e:
         print >>original_stderr, "exception %r while fixing up sys.stdout and sys.stderr" % (e,)
         log.msg("exception %r while fixing up sys.stdout and sys.stderr" % (e,), log.WEIRD)