aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v2/category.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-05-29 22:58:20 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-05-29 22:58:20 +0200
commitb0049442eee94a1636490c091215bd706f819558 (patch)
treee44b18eddfcc0134ed4fc2b38821740617fac694 /src/web/views/api/v2/category.py
parentBugfix: it was not possible to delete a user with categories. (diff)
downloadnewspipe-b0049442eee94a1636490c091215bd706f819558.tar.gz
newspipe-b0049442eee94a1636490c091215bd706f819558.tar.bz2
newspipe-b0049442eee94a1636490c091215bd706f819558.zip
Fixed some depreciations with the new version of Flask.
Diffstat (limited to 'src/web/views/api/v2/category.py')
-rw-r--r--src/web/views/api/v2/category.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/api/v2/category.py b/src/web/views/api/v2/category.py
index 21459fc5..70fda1ea 100644
--- a/src/web/views/api/v2/category.py
+++ b/src/web/views/api/v2/category.py
@@ -1,6 +1,6 @@
from conf import API_ROOT
from flask import current_app
-from flask.ext.restful import Api
+from flask_restful import Api
from web.controllers.category import CategoryController
from web.views.api.v2.common import (PyAggResourceNew,
bgstack15