From cc31c0a82a5de99f7f36de31d4a32f5de239b759 Mon Sep 17 00:00:00 2001 From: ianb Date: Tue, 28 Feb 2006 20:57:40 +0000 Subject: Remove the print of exceptions, which can be safely ignored; was causing paste.fixture to whine about errors being printed --- paste/wsgilib.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'paste/wsgilib.py') 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 -- cgit v1.2.1