From 5c59766b505d26665d2f91faf8065b9faec39c35 Mon Sep 17 00:00:00 2001 From: Kudzai Chasinda Date: Sun, 3 Nov 2019 13:56:51 +0200 Subject: [PATCH] Fix space issue on python reply (#184) --- python3/kumar_asshole.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python3/kumar_asshole.py b/python3/kumar_asshole.py index c85155b..a66b255 100755 --- a/python3/kumar_asshole.py +++ b/python3/kumar_asshole.py @@ -16,7 +16,7 @@ GMAIL_PASSWORD = dotenv['GMAIL_PASSWORD'] KUMAR_EMAIL = 'kumar.a@example.com' KEYWORDS_REGEX = re.compile(r'sorry|help|wrong', re.IGNORECASE) -REPLY_BODY = "No problem. I've fixed it. \n\n Please be careful next time." +REPLY_BODY = "No problem. I've fixed it. \n\nPlease be careful next time." yagmail.register(GMAIL_USERNAME, GMAIL_PASSWORD)