diff options
author | B. Stack <bgstack15@gmail.com> | 2022-02-11 16:24:40 -0500 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-02-11 16:24:40 -0500 |
commit | de002f4b786f93b966fa495b44154fb1979949ee (patch) | |
tree | 63c62b7a615980ec5a4300b1a8cd5022e7c3f6e6 /manage.py | |
parent | add private paste (diff) | |
download | stackbin-de002f4b786f93b966fa495b44154fb1979949ee.tar.gz stackbin-de002f4b786f93b966fa495b44154fb1979949ee.tar.bz2 stackbin-de002f4b786f93b966fa495b44154fb1979949ee.zip |
fixed deps which means flask 1
So the next step will be to make it work with flask 2 (current)
Diffstat (limited to 'manage.py')
-rw-r--r-- | manage.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ -from flask.ext.script import Manager, Server -from flask.ext.script.commands import Clean +from flask_script import Manager, Server +from flask_script.commands import Clean from pastebin import app, db manager = Manager(app) |