[Zodb-checkins] CVS: Zope3/src/zodb/zeo/auth - base.py:1.3

Steve Alexander steve at cat-box.net
Mon Jun 30 13:53:20 EDT 2003


Update of /cvs-repository/Zope3/src/zodb/zeo/auth
In directory cvs.zope.org:/tmp/cvs-serv22768/src/zodb/zeo/auth

Modified Files:
	base.py 
Log Message:
Removed a bunch of TABS.

Wasn't there some talk a while ago about a script in the repository
that would reject checkins of .py files containing tabs?


=== Zope3/src/zodb/zeo/auth/base.py 1.2 => 1.3 ===
--- Zope3/src/zodb/zeo/auth/base.py:1.2	Thu Jun 19 17:41:08 2003
+++ Zope3/src/zodb/zeo/auth/base.py	Mon Jun 30 12:52:49 2003
@@ -99,7 +99,7 @@
 
         Callers must check for LookupError, which is raised in
         the case of a non-existent user specified."""
-	if not self._users.has_key(username):
+        if not self._users.has_key(username):
             raise LookupError, "No such user: %s" % username
         return self._users[username]
     
@@ -112,7 +112,7 @@
         self._store_password(username, password)
 
     def del_user(self, username):
-	if not self._users.has_key(username):
+        if not self._users.has_key(username):
             raise LookupError, "No such user: %s" % username
         del self._users[username]
 




More information about the Zodb-checkins mailing list