Fixed deleting

pull/3/head
Davide Bongiovanni 6 years ago
parent 752b32cf7a
commit a40748d0b2

@ -239,7 +239,7 @@ def alter(partID):
@app.route('/parts/delete/<partID>')
# @requires_auth
def delete(partID):
if partID < 0:
if int(partID) < 0:
abort(400)
s = text('delete from parts where id=:id;')
r = db_engine.execute(s, id=partID)

Loading…
Cancel
Save