aboutsummaryrefslogtreecommitdiff
path: root/pastebin.py
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-11 16:24:40 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-11 16:24:40 -0500
commitde002f4b786f93b966fa495b44154fb1979949ee (patch)
tree63c62b7a615980ec5a4300b1a8cd5022e7c3f6e6 /pastebin.py
parentadd private paste (diff)
downloadstackbin-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.py2
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__)
bgstack15