diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2016-04-04 16:29:16 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2016-04-04 16:29:16 +0200 |
commit | 2f2e0ae7d8b4545b736ca9ce5302686418933fbb (patch) | |
tree | 1ba09cc30602c66f9d0fc0a31973ffba9df2409d | |
parent | 068b917e729ab38d473559598abdc27832dfbd61 (diff) | |
download | pykolab-2f2e0ae7d8b4545b736ca9ce5302686418933fbb.tar.gz |
Fix double-quotation of partition argument for folder rename (#5354)
Summary: Fixes #5354
Reviewers: #pykolab_developers, vanmeeuwen
Reviewed By: #pykolab_developers, vanmeeuwen
Subscribers: venc, petersen, vennen
Differential Revision: https://git.kolab.org/D114
-rw-r--r-- | pykolab/imap/cyrus.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pykolab/imap/cyrus.py b/pykolab/imap/cyrus.py index c8f0bc0..cd4191d 100644 --- a/pykolab/imap/cyrus.py +++ b/pykolab/imap/cyrus.py @@ -336,7 +336,7 @@ class Cyrus(cyruslib.CYRUS): self.m.rename( self.folder_utf7(from_mailfolder), self.folder_utf7(to_mailfolder), - '"%s"' % (partition) + partition ) def _getannotation(self, *args, **kw): |