summaryrefslogtreecommitdiff
path: root/matweb/rest_api.py
diff options
context:
space:
mode:
Diffstat (limited to 'matweb/rest_api.py')
-rw-r--r--matweb/rest_api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/matweb/rest_api.py b/matweb/rest_api.py
index 4910b44..429b82e 100644
--- a/matweb/rest_api.py
+++ b/matweb/rest_api.py
@@ -15,8 +15,8 @@ from flasgger import swag_from
15from matweb import file_removal_scheduler, utils 15from matweb import file_removal_scheduler, utils
16 16
17 17
18api_bp = Blueprint('api_bp', __name__, url_prefix='/api/') 18api_bp = Blueprint('api_bp', __name__)
19api = Api(api_bp) 19api = Api(api_bp, prefix='/api')
20 20
21 21
22class APIUpload(Resource): 22class APIUpload(Resource):