Update galeranotify.py

Fix incorrect ordering of date terms - month and day were swapped
This commit is contained in:
joshin42 2015-10-17 22:39:05 -07:00
parent ea315b138d
commit ec1998b4b1
1 changed files with 1 additions and 1 deletions

View File

@ -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
################################################################################