/offlineimap/head: changeset 270

Another attempt at dealing with bogus IMAP stuff
This commit is contained in:
jgoerzen 2002-10-16 00:07:02 +01:00
parent 2ccea111dd
commit 51abdbe08a
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
offlineimap (3.99.2) unstable; urgency=low
* Further attempts to fix imapsplit problems.
-- John Goerzen <jgoerzen@complete.org> Tue, 15 Oct 2002 12:35:42 -0500
offlineimap (3.99.1) unstable; urgency=low
* Fixed some syntax errors in imaputil.py

View File

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