From 9fa71c8cf86defce7c5b6ebe3cf596defe5d8953 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Tue, 9 Apr 2024 11:54:51 +0200 Subject: [PATCH] fix: use the correct variable name in the route --- website/web/genericapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/web/genericapi.py b/website/web/genericapi.py index a4afacf4..75cead65 100644 --- a/website/web/genericapi.py +++ b/website/web/genericapi.py @@ -282,7 +282,7 @@ class TriggerModules(Resource): # type: ignore[misc] return lookyloo.trigger_modules(capture_uuid, force=force) -@api.route('/json//modules') +@api.route('/json//modules') @api.doc(description='Get responses from the 3rd party modules', params={'capture_uuid': 'The UUID of the capture'}) class ModulesResponse(Resource): # type: ignore[misc]