]> git.madduck.net Git - etc/offlineimap.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

readying for offlineimap3
authormartin f. krafft <madduck@madduck.net>
Wed, 30 Dec 2020 01:42:23 +0000 (14:42 +1300)
committermartin f. krafft <madduck@madduck.net>
Wed, 30 Dec 2020 01:42:23 +0000 (14:42 +1300)
.offlineimap/helper.py

index 454d1e697380d1c9bc77aef2d37eadf65291987a..d758d9527834c7d78e1ed3857a5899aa320b661a 100644 (file)
@@ -19,7 +19,7 @@ def py_foldersort_main(x, y):
             return +1
         elif y.startswith(prefix):
             return -1
-    return cmp(x, y)
+    return (x > y) - (x < y)
 
 def py_nametrans(x):
     return re.sub('^INBOX', 'inbox', x)