diff options
| -rw-r--r-- | emailcanary/emailutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emailcanary/emailutils.py b/emailcanary/emailutils.py index 2358a3a..13cd1c3 100644 --- a/emailcanary/emailutils.py +++ b/emailcanary/emailutils.py @@ -38,7 +38,7 @@ def get_message(mail, uid): def delete_message(mail, uid): if mail is None: return - result = mail.uid('store', uid, '+FLAGS', '(\Deleted)') + result = mail.uid('store', uid, '+FLAGS', r'(\Deleted)') def close(mail): if mail is None: |
