summaryrefslogtreecommitdiff
path: root/paste/wsgilib.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-02-28 20:57:40 +0000
committerianb <devnull@localhost>2006-02-28 20:57:40 +0000
commitcc31c0a82a5de99f7f36de31d4a32f5de239b759 (patch)
tree3039cb807aeca3c8227e4d6041927fc97e109bb7 /paste/wsgilib.py
parentaea54b214ab45ccfa37098e3b0af12f4585d9f63 (diff)
downloadpaste-cc31c0a82a5de99f7f36de31d4a32f5de239b759.tar.gz
Remove the print of exceptions, which can be safely ignored; was causing paste.fixture to whine about errors being printed
Diffstat (limited to 'paste/wsgilib.py')
-rw-r--r--paste/wsgilib.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/paste/wsgilib.py b/paste/wsgilib.py
index bbe20fd..a838587 100644
--- a/paste/wsgilib.py
+++ b/paste/wsgilib.py
@@ -212,9 +212,6 @@ def raw_interactive(application, path='', raise_on_wsgi_error=False,
if headers_sent:
# Re-raise original exception only if headers sent
raise exc_info[0], exc_info[1], exc_info[2]
- else:
- print_exception(exc_info[0], exc_info[1], exc_info[2],
- file=errors)
finally:
# avoid dangling circular reference
exc_info = None