Skip to content

Commit

Permalink
Remove bad id parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
psyray committed Oct 22, 2023
1 parent b429214 commit ec771cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/scanEngine/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def modify_tool_in_arsenal(request, slug, id):
request,
messages.INFO,
'Tool modified successfully')
return http.HttpResponseRedirect(reverse('tool_arsenal', kwargs={'slug': slug, 'id': id}))
return http.HttpResponseRedirect(reverse('tool_arsenal', kwargs={'slug': slug}))
else:
form.set_value(external_tool)
context = {
Expand Down

0 comments on commit ec771cf

Please sign in to comment.