Revision: 3205
          http://spambayes.svn.sourceforge.net/spambayes/?rev=3205&view=rev
Author:   montanaro
Date:     2008-11-25 02:11:59 +0000 (Tue, 25 Nov 2008)

Log Message:
-----------
too fast on the trigger finger

Modified Paths:
--------------
    trunk/spambayes/spambayes/OptionsClass.py

Modified: trunk/spambayes/spambayes/OptionsClass.py
===================================================================
--- trunk/spambayes/spambayes/OptionsClass.py   2008-11-25 02:10:28 UTC (rev 
3204)
+++ trunk/spambayes/spambayes/OptionsClass.py   2008-11-25 02:11:59 UTC (rev 
3205)
@@ -856,8 +856,8 @@
 # but this is too complex for us at the moment.
 IMAP_ASTRING = []
 for _i in xrange(1, 128):
-    if chr(i) not in ['"', '\\', '\n', '\r']:
-        IMAP_ASTRING.append(chr(i))
+    if chr(_i) not in ['"', '\\', '\n', '\r']:
+        IMAP_ASTRING.append(chr(_i))
 del _i
 IMAP_ASTRING = r"\"?[" + re.escape(''.join(IMAP_ASTRING)) + r"]+\"?"
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.
_______________________________________________
Spambayes-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/spambayes-checkins

Reply via email to