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 /pastebin.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 'pastebin.py')
-rw-r--r-- | pastebin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pastebin.py b/pastebin.py index 4d4309d..c2ed89d 100644 --- a/pastebin.py +++ b/pastebin.py @@ -2,7 +2,7 @@ from datetime import datetime from itsdangerous import Signer from flask import (Flask, request, url_for, redirect, g, render_template, session, abort) -from flask.ext.sqlalchemy import SQLAlchemy +from flask_sqlalchemy import SQLAlchemy app = Flask(__name__) |