Skip to content

Commit

Permalink
Migrate flask imports for manage.py script
Browse files Browse the repository at this point in the history
Fixes: #114
  • Loading branch information
ptitoliv committed Mar 22, 2021
1 parent cf277d0 commit f14be08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manage.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from flask import Flask
from flask.ext.sqlalchemy import SQLAlchemy
from flask.ext.script import Manager
from flask.ext.migrate import Migrate, MigrateCommand
from flask_sqlalchemy import SQLAlchemy
from flask_script import Manager
from flask_migrate import Migrate, MigrateCommand
from cineapp import app,db

manager = Manager(app)
Expand Down

0 comments on commit f14be08

Please sign in to comment.