Skip to content

Commit cac98e1

Browse files
authored
Merge pull request Jackiebibili#20 from Jackiebibili/develop
Hot fix
2 parents 6ecaea5 + 68e9044 commit cac98e1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

apps/pushnotification/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from ...secret import MAILER_PW
1+
import os
22

33
port = 465 # For starttls
44
smtp_server = "smtp.gmail.com"
55
sender_email = "[email protected]"
66
subject = "Message from Ticketmaster Ticket Tracker"
7-
app_password = MAILER_PW
7+
app_password = os.environ.get('MAILER_PW', '')

secret.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
import os
22

33
CONN_SRV = os.environ.get('CONN_SRV')
4-
MAILER_PW = os.environ.get('MAILER_PW', '')

0 commit comments

Comments
 (0)