]> code.delx.au - offlineimap/commitdiff
/offlineimap/head: changeset 268
authorjgoerzen <jgoerzen>
Thu, 10 Oct 2002 05:37:37 +0000 (06:37 +0100)
committerjgoerzen <jgoerzen>
Thu, 10 Oct 2002 05:37:37 +0000 (06:37 +0100)
Various bugfixes

offlineimap/head/ChangeLog
offlineimap/head/debian/changelog
offlineimap/head/offlineimap/imaputil.py

index 33ede41cd1ee9433ee59c1d60c1dd06494e33913..115b528eeef397ae13d78cdf97850ec25e83ee34 100644 (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:
index b58bad1ca7f9e31947684fc7cebd7887ea34a3a9..04a496379712385a4bfe9a808652957441a42ed1 100644 (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
index 8537b69aa48d6913524e3e989bc593190a37c3f4..ea0c6d02f5cacb521dcf00cd5b36918ce0f5c090 100644 (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