Fix crash due to missing import

This commit is contained in:
rubenwardy 2019-11-27 01:16:59 +00:00
parent dd5de1787f
commit e57f2dfe7d
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from flask import render_template, redirect, request, session, url_for
from flask import render_template, redirect, request, session, url_for, abort
from flask_user import login_required, current_user
from . import bp
from app.models import db, User, APIToken, Package, Permission