aboutsummaryrefslogtreecommitdiffstats
path: root/routes/media.py
diff options
context:
space:
mode:
authorFulgen301 <tokmajigeorge@gmail.com>2018-09-18 18:07:38 +0200
committerFulgen301 <tokmajigeorge@gmail.com>2018-09-18 18:07:38 +0200
commit0ec1e4071a181b24ba47a9aefd29d3b3be0ba573 (patch)
tree99a447bb924ebf292a9770af3721aabf88c60ece /routes/media.py
parentb39f368e5626b1bc59fa452a032bc2de71249ee2 (diff)
downloadparry-0ec1e4071a181b24ba47a9aefd29d3b3be0ba573.tar.gz
parry-0ec1e4071a181b24ba47a9aefd29d3b3be0ba573.zip
media: Remove debug print
Diffstat (limited to 'routes/media.py')
-rw-r--r--routes/media.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/routes/media.py b/routes/media.py
index 207eeda..7986960 100644
--- a/routes/media.py
+++ b/routes/media.py
@@ -48,7 +48,6 @@ def post_media():
f = _upload_file(next(request.files.values()))
session.add(f)
session.commit()
- print(f.json())
return HTTPResponse(f.json(), status=201)
@get("/api/media/<id>")