diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-05-29 22:58:20 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-05-29 22:58:20 +0200 |
commit | b0049442eee94a1636490c091215bd706f819558 (patch) | |
tree | e44b18eddfcc0134ed4fc2b38821740617fac694 /src/web/views/api/v2 | |
parent | Bugfix: it was not possible to delete a user with categories. (diff) | |
download | newspipe-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')
-rw-r--r-- | src/web/views/api/v2/article.py | 2 | ||||
-rw-r--r-- | src/web/views/api/v2/category.py | 2 | ||||
-rw-r--r-- | src/web/views/api/v2/common.py | 4 | ||||
-rw-r--r-- | src/web/views/api/v2/feed.py | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/web/views/api/v2/article.py b/src/web/views/api/v2/article.py index 71201538..2be286c6 100644 --- a/src/web/views/api/v2/article.py +++ b/src/web/views/api/v2/article.py @@ -2,7 +2,7 @@ from conf import API_ROOT import dateutil.parser from datetime import datetime from flask import current_app -from flask.ext.restful import Api +from flask_restful import Api from web.views.common import api_permission from web.controllers import ArticleController 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, diff --git a/src/web/views/api/v2/common.py b/src/web/views/api/v2/common.py index 0227d6cf..04b19d78 100644 --- a/src/web/views/api/v2/common.py +++ b/src/web/views/api/v2/common.py @@ -23,8 +23,8 @@ import logging from functools import wraps from werkzeug.exceptions import Unauthorized, BadRequest, Forbidden, NotFound from flask import request -from flask.ext.restful import Resource, reqparse -from flask.ext.login import current_user +from flask_restful import Resource, reqparse +from flask_login import current_user from web.views.common import admin_permission, api_permission, \ login_user_bundle, jsonify diff --git a/src/web/views/api/v2/feed.py b/src/web/views/api/v2/feed.py index 686dcd76..a5561475 100644 --- a/src/web/views/api/v2/feed.py +++ b/src/web/views/api/v2/feed.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.views.common import api_permission from web.controllers.feed import (FeedController, |