summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--paste/util/threadedprint.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paste/util/threadedprint.py b/paste/util/threadedprint.py
index e69993e..820311e 100644
--- a/paste/util/threadedprint.py
+++ b/paste/util/threadedprint.py
@@ -237,8 +237,8 @@ def install_stdin(**kw):
register_stdin = _stdincatcher.register
deregister_stdin = _stdincatcher.deregister
-def uninstall():
- global _stdincatcher, _oldstin, register_stdin, deregister_stdin
+def uninstall_stdin():
+ global _stdincatcher, _oldstdin, register_stdin, deregister_stdin
if _stdincatcher:
sys.stdin = _oldstdin
_stdincatcher = _oldstdin = None