Rename imports to get rid of deprecation warnings

These imports have moved. One day importing them by the old name will
stop working. For now they just leave a warning in our logs. But better
not to have those warnings in our logs.
This commit is contained in:
Chris Hill-Scott
2017-07-27 15:17:17 +01:00
parent a60b3b4bc2
commit 5c49c08db7
2 changed files with 3 additions and 3 deletions

2
app.py
View File

@@ -1,5 +1,5 @@
import os
from flask.ext.script import Manager, Server
from flask_script import Manager, Server
from app import create_app