/offlineimap/head: changeset 268

Various bugfixes
This commit is contained in:
jgoerzen 2002-10-10 06:37:37 +01:00
parent 528a349d4b
commit 26e6472dd3
3 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,31 @@
------------------------------------------------------------------------
rev 267: mj | 2002-10-09 10:55:34 -0500 (Wed, 09 Oct 2002) | 2 lines
Changed paths:
M /offlineimap/head/offlineimap/mbnames.py
mbnames folder filter takes *2* arguments.
------------------------------------------------------------------------
rev 266: jgoerzen | 2002-10-08 10:18:11 -0500 (Tue, 08 Oct 2002) | 2 lines
Changed paths:
M /offlineimap/head/offlineimap/imaputil.py
Fixed a syntax error found by Corey.
------------------------------------------------------------------------
rev 264: jgoerzen | 2002-10-07 11:32:32 -0500 (Mon, 07 Oct 2002) | 2 lines
Changed paths:
M /offlineimap/head/debian/changelog
Fixed date
------------------------------------------------------------------------
rev 263: jgoerzen | 2002-10-07 11:31:20 -0500 (Mon, 07 Oct 2002) | 2 lines
Changed paths:
M /offlineimap/head/ChangeLog
Changelog for 3.99.0
------------------------------------------------------------------------
rev 262: jgoerzen | 2002-10-07 11:30:35 -0500 (Mon, 07 Oct 2002) | 2 lines
Changed paths:

View File

@ -1,3 +1,10 @@
offlineimap (3.99.1) unstable; urgency=low
* Fixed some syntax errors in imaputil.py
* Fixed a syntax error with mbnames
-- John Goerzen <jgoerzen@complete.org> Wed, 9 Oct 2002 19:34:37 -0500
offlineimap (3.99.0) unstable; urgency=low
* The next few releases are adding features and reorganizing

View File

@ -103,7 +103,7 @@ def imapsplit(imapstring):
arg = imapstring[i]
arg = re.sub('\{\d+\}$', '', arg)
debug("imapsplit() non-string [%d]: Feeding %s to recursion" %\
arg)
(i, arg))
retval.extend(imapsplit(imapstring[i]))
debug("imapsplit() non-string: returning %s" % str(retval))
return retval