summaryrefslogtreecommitdiff
path: root/paste/auth/cas.py
diff options
context:
space:
mode:
authorcce <devnull@localhost>2005-12-14 18:42:14 +0000
committercce <devnull@localhost>2005-12-14 18:42:14 +0000
commit8a1a2d97cd184f0618ef8647e4964f8b6a90a9e7 (patch)
tree315bbf31a9fbcc368c15013b7a01fea150b8e201 /paste/auth/cas.py
parentcde83b126e24b4cbf4c6e12b2748360c048bebd7 (diff)
downloadpaste-8a1a2d97cd184f0618ef8647e4964f8b6a90a9e7.tar.gz
migrating tests to use util.httpserver rather than util.baseserver
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 193b79a..629fc85 100644
--- a/paste/auth/cas.py
+++ b/paste/auth/cas.py
@@ -88,7 +88,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.baseserver import serve
+ from paste.util.httpserver import serve
from paste.httpexceptions import *
serve(HTTPExceptionHandler(
AuthCASHandler(dump_environ, authority)))