Fixed broken delete argument (capture_id instead of id)

This commit is contained in:
Joel Collins 2020-03-17 17:14:29 +00:00
parent 1a27a8e4f3
commit 093e5a0a7a

View file

@ -207,7 +207,7 @@ class CaptureTags(View):
return jsonify(capture_obj.tags)
def delete(self, capture_id):
def delete(self, id):
"""
Delete tags from a single image capture
"""