From ec1998b4b17b4f7bd99a5dca97da0412087d9fcc Mon Sep 17 00:00:00 2001 From: joshin42 Date: Sat, 17 Oct 2015 22:39:05 -0700 Subject: [PATCH] Update galeranotify.py Fix incorrect ordering of date terms - month and day were swapped --- galeranotify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galeranotify.py b/galeranotify.py index e8428df..106b34f 100644 --- a/galeranotify.py +++ b/galeranotify.py @@ -49,7 +49,7 @@ MAIL_FROM = 'YOUR_EMAIL_HERE' MAIL_TO = ['SOME_OTHER_EMAIL_HERE'] # Need Date in Header for SMTP RFC Compliance -DATE = datetime.datetime.now().strftime( "%d/%m/%Y %H:%M" ) +DATE = datetime.datetime.now().strftime( "%m/%d/%Y %H:%M" ) # Edit below at your own risk ################################################################################