Skip to content

Commit 8a35e4e

Browse files
author
Richard Jones
committed
removed Boolean from source to make py <2.3 happy [SF#938790]
1 parent f77a664 commit 8a35e4e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Fixed:
66
- sqlite migration drops some journal information (thanks David Linke)
77
- user editing Role entry help text always appears
88
- disable forking server when os.fork() not available (sf bug 938586)
9+
- removed Boolean from source to make py <2.3 happy (sf bug 938790)
910

1011

1112
2004-04-18 0.7.0b3

roundup/mailgw.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class node. Any parts of other types are each stored in separate files
7474
an exception, the original message is bounced back to the sender with the
7575
explanatory message given in the exception.
7676
77-
$Id: mailgw.py,v 1.148 2004-04-13 04:16:36 richard Exp $
77+
$Id: mailgw.py,v 1.149 2004-04-20 22:01:12 richard Exp $
7878
"""
7979
__docformat__ = 'restructuredtext'
8080

@@ -368,7 +368,7 @@ def do_mailbox(self, filename):
368368
fcntl.flock(f.fileno(), FCNTL.LOCK_UN)
369369
return 0
370370

371-
def do_imap(self, server, user='', password='', mailbox='', ssl=False):
371+
def do_imap(self, server, user='', password='', mailbox='', ssl=0):
372372
''' Do an IMAP connection
373373
'''
374374
import getpass, imaplib, socket

0 commit comments

Comments
 (0)