changeset 17:0dacc8e37fd9 0.0.1a

-
author Ben Croston <ben@croston.org>
date Mon, 05 Sep 2011 21:29:46 +0100
parents 686b998428de
children 072ee6d41aa7
files README.txt setup.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/README.txt	Mon Sep 05 21:23:53 2011 +0100
+++ b/README.txt	Mon Sep 05 21:29:46 2011 +0100
@@ -10,7 +10,7 @@
 
     import hashlib
     from wsgiref import simple_server
-    from authrpc.server import AuthRPCApp
+    from AuthRPC.server import AuthRPCApp
 
     def myauth(username, password, useragent):
         return username  == 'myuser' and \
--- a/setup.py	Mon Sep 05 21:23:53 2011 +0100
+++ b/setup.py	Mon Sep 05 21:29:46 2011 +0100
@@ -23,7 +23,7 @@
 
 if platform.python_version().startswith('3'):
     # we can't build server with python 3
-    exclude.append('authrpc.server')
+    exclude.append('AuthRPC.server')
     extra['use_2to3'] = True
 
 setup(name             = 'AuthRPC',