summaryrefslogtreecommitdiff
path: root/paste/auth/basic.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/basic.py
parent2a9341bf0034b61510ae575dcceefa8ecbfd2bc8 (diff)
downloadpaste-95c32e90659ff1969ae542e3d6533283a34a76c2.tar.gz
moving httpserver from util sub-package up a level
Diffstat (limited to 'paste/auth/basic.py')
-rw-r--r--paste/auth/basic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/auth/basic.py b/paste/auth/basic.py
index cfacb28..0f7f72c 100644
--- a/paste/auth/basic.py
+++ b/paste/auth/basic.py
@@ -11,7 +11,7 @@ are using SSL or need to work with very out-dated clients, instead
use ``digest`` authentication.
>>> from paste.wsgilib import dump_environ
->>> from paste.util.httpserver import serve
+>>> from paste.httpserver import serve
>>> # from paste.auth.basic import AuthBasicHandler
>>> realm = 'Test Realm'
>>> def authfunc(username, password):