summaryrefslogtreecommitdiff
path: root/paste/auth/cas.py
diff options
context:
space:
mode:
authorcce <devnull@localhost>2006-01-09 06:26:36 +0000
committercce <devnull@localhost>2006-01-09 06:26:36 +0000
commit95c32e90659ff1969ae542e3d6533283a34a76c2 (patch)
treee908afe34ff0ef71e15ac3c4a68f8088fdf78844 /paste/auth/cas.py
parent2a9341bf0034b61510ae575dcceefa8ecbfd2bc8 (diff)
downloadpaste-95c32e90659ff1969ae542e3d6533283a34a76c2.tar.gz
moving httpserver from util sub-package up a level
Diffstat (limited to 'paste/auth/cas.py')
-rw-r--r--paste/auth/cas.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/auth/cas.py b/paste/auth/cas.py
index 92c7996..6e501b5 100644
--- a/paste/auth/cas.py
+++ b/paste/auth/cas.py
@@ -93,7 +93,7 @@ __all__ = ['CASLoginFailure', 'CASAuthenticate', 'AuthCASHandler' ]
if '__main__' == __name__:
authority = "https://secure.its.yale.edu/cas/servlet/"
from paste.wsgilib import dump_environ
- from paste.util.httpserver import serve
+ from paste.httpserver import serve
from paste.httpexceptions import *
serve(HTTPExceptionHandler(
AuthCASHandler(dump_environ, authority)))