[Zope3-checkins] CVS: Zope3/src/zope/server/linereceiver - lineserverchannel.py:1.3

Albertas Agejevas alga@codeworks.lt
Thu, 13 Mar 2003 13:49:49 -0500


Update of /cvs-repository/Zope3/src/zope/server/linereceiver
In directory cvs.zope.org:/tmp/cvs-serv1411/src/zope/server/linereceiver

Modified Files:
	lineserverchannel.py 
Log Message:
An unexpected raid by the Whitespace Police.

Other than fixes of nonconforming whitespace, just a couple of $Id$
docstrings has been added.



=== Zope3/src/zope/server/linereceiver/lineserverchannel.py 1.2 => 1.3 ===
--- Zope3/src/zope/server/linereceiver/lineserverchannel.py:1.2	Wed Dec 25 09:15:26 2002
+++ Zope3/src/zope/server/linereceiver/lineserverchannel.py	Thu Mar 13 13:49:18 2003
@@ -74,7 +74,7 @@
         assert isinstance(command, LineCommandParser)
         cmd = command.cmd
         method = 'cmd_' + cmd.lower()
-        if ( not self.authenticated and method not in self.special_commands):
+        if (not self.authenticated and method not in self.special_commands):
             # The user is not logged in, therefore don't allow anything
             self.reply(self.not_auth_reply)