Skip to content

Commit

Permalink
fix nooby query
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktMKuehne committed Nov 17, 2023
1 parent e57d020 commit c715b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion embark/dashboard/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def archive_analysis(request, analysis_id):
and sets analysis into archived state
"""
logger.info("Archiving Analysis with id: %s", analysis_id)
analysis = FirmwareAnalysis.get(id=analysis_id)
analysis = FirmwareAnalysis.objects.get(id=analysis_id)
if analysis.zip_file is not None:
# make archive for uuid
_ = make_zip(request, analysis_id)
Expand Down

0 comments on commit c715b8a

Please sign in to comment.