summaryrefslogtreecommitdiff
path: root/paste/httpexceptions.py
diff options
context:
space:
mode:
authorIan Bicking <ian@ianbicking.org>2005-12-18 21:30:27 +0000
committerIan Bicking <ian@ianbicking.org>2005-12-18 21:30:27 +0000
commit407f0930ed8dba40e945039969080e86c1280855 (patch)
tree58d9ddc0bc585916432f21da6cc2fd7a0fafc965 /paste/httpexceptions.py
parent364b6e7d817216d5b659e3da1648359457e485d7 (diff)
downloadpaste-git-407f0930ed8dba40e945039969080e86c1280855.tar.gz
Moved all the internal uses of wsgilib to their correct forms now
Diffstat (limited to 'paste/httpexceptions.py')
-rw-r--r--paste/httpexceptions.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/paste/httpexceptions.py b/paste/httpexceptions.py
index 95fa5cf..0180925 100644
--- a/paste/httpexceptions.py
+++ b/paste/httpexceptions.py
@@ -71,7 +71,8 @@ Exception
import types
import sys
-from wsgilib import has_header, header_value, catch_errors_app
+from wsgilib import catch_errors_app
+from response import has_header, header_value
from util.quoting import strip_html, html_quote
class HTTPException(Exception):