Compare commits
No commits in common. "134b117d446ba58bfac0b1c5c59bb3a0a7fe2e58" and "a078ef14b5986ed6867fbcc8e87adef4bd0e7c5c" have entirely different histories.
134b117d44
...
a078ef14b5
3
app.py
3
app.py
|
@ -1,7 +1,6 @@
|
||||||
import datetime
|
import datetime
|
||||||
import email.message
|
import email.message
|
||||||
import logging
|
import logging
|
||||||
import logging.config
|
|
||||||
import os
|
import os
|
||||||
import smtplib
|
import smtplib
|
||||||
|
|
||||||
|
@ -15,7 +14,7 @@ from flask import (
|
||||||
|
|
||||||
import config
|
import config
|
||||||
|
|
||||||
logging.config.dictConfig(config.logging)
|
logging.basicConfig(format="%(asctime)s %(levelname)s %(name)s %(lineno)d | %(message)s", level=logging.DEBUG)
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
app.secret_key = config.secret_key
|
app.secret_key = config.secret_key
|
||||||
|
|
Loading…
Reference in New Issue