[Zodb-checkins] CVS: ZODB3/ZEO/auth - base.py:1.3

Christian Reis kiko at async.com.br
Mon Jul 28 00:43:32 EDT 2003


Update of /cvs-repository/ZODB3/ZEO/auth
In directory cvs.zope.org:/tmp/cvs-serv27126/ZEO/auth

Modified Files:
	base.py 
Log Message:
Better wording for exception in database handling


=== ZODB3/ZEO/auth/base.py 1.2 => 1.3 ===
--- ZODB3/ZEO/auth/base.py:1.2	Fri May 30 15:20:57 2003
+++ ZODB3/ZEO/auth/base.py	Sun Jul 27 23:43:26 2003
@@ -108,7 +108,7 @@
 
     def add_user(self, username, password):
         if self._users.has_key(username):
-            raise LookupError, "User %s does already exist" % username
+            raise LookupError, "User %s already exists" % username
         self._store_password(username, password)
 
     def del_user(self, username):




More information about the Zodb-checkins mailing list