From 6674a9f89f60791837cc190580283388e487f354 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sun, 11 Jan 2026 19:56:19 -0800 Subject: Fix invalid escape sequence error --- emailcanary/emailutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'emailcanary') 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: -- cgit v1.2.3