changeset 2231:27ba128ab567

removed Boolean from source to make py <2.3 happy [SF#938790]
author Richard Jones <richard@users.sourceforge.net>
date Tue, 20 Apr 2004 22:01:12 +0000
parents ca2664e095be
children 9bcfdd39bef8
files CHANGES.txt roundup/mailgw.py
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGES.txt	Tue Apr 20 21:57:29 2004 +0000
+++ b/CHANGES.txt	Tue Apr 20 22:01:12 2004 +0000
@@ -6,6 +6,7 @@
 - sqlite migration drops some journal information (thanks David Linke)
 - user editing Role entry help text always appears
 - disable forking server when os.fork() not available (sf bug 938586)
+- removed Boolean from source to make py <2.3 happy (sf bug 938790)
 
 
 2004-04-18 0.7.0b3
--- a/roundup/mailgw.py	Tue Apr 20 21:57:29 2004 +0000
+++ b/roundup/mailgw.py	Tue Apr 20 22:01:12 2004 +0000
@@ -74,7 +74,7 @@
 an exception, the original message is bounced back to the sender with the
 explanatory message given in the exception. 
 
-$Id: mailgw.py,v 1.148 2004-04-13 04:16:36 richard Exp $
+$Id: mailgw.py,v 1.149 2004-04-20 22:01:12 richard Exp $
 """
 __docformat__ = 'restructuredtext'
 
@@ -368,7 +368,7 @@
         fcntl.flock(f.fileno(), FCNTL.LOCK_UN)
         return 0
 
-    def do_imap(self, server, user='', password='', mailbox='', ssl=False):
+    def do_imap(self, server, user='', password='', mailbox='', ssl=0):
         ''' Do an IMAP connection
         '''
         import getpass, imaplib, socket

Roundup Issue Tracker: http://roundup-tracker.org/