Skip to content

Commit

Permalink
Logging related errors fixed | #7
Browse files Browse the repository at this point in the history
  • Loading branch information
eshaan7 committed Jul 31, 2019
1 parent 36b19c8 commit cf4e4c6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/create_db.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
from datetime import datetime

from FlaskRTBCTF import create_app, db, bcrypt
from FlaskRTBCTF.models import User, Score, Notification, Logs
from FlaskRTBCTF.models import User, Score, Notification
from FlaskRTBCTF.config import organization, LOGGING

if LOGGING:
from FlaskRTBCTF.models import Logs

app = create_app()

# create_app().app_context().push()
Expand Down

0 comments on commit cf4e4c6

Please sign in to comment.