From ec6a674a5c87fd557c1d4b7e1aba564418f3bbcf Mon Sep 17 00:00:00 2001 From: david-sarah Date: Mon, 26 Jul 2010 14:47:36 -0700 Subject: [PATCH] windows/fixups.py: fix paste-o in name of Unicode stderr wrapper. --- src/allmydata/windows/fixups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/windows/fixups.py b/src/allmydata/windows/fixups.py index dcedd174..ea23500c 100644 --- a/src/allmydata/windows/fixups.py +++ b/src/allmydata/windows/fixups.py @@ -152,7 +152,7 @@ def initialize(): if real_stderr: sys.stderr = UnicodeOutput(hStderr, None, STDERR_FILENO, '') else: - sys.stderr = UnicodeOutput(None, sys.stderr, old_stderr_fileno, '') + sys.stderr = UnicodeOutput(None, sys.stderr, old_stderr_fileno, '') 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) -- 2.45.2