From e5cdfcad9fa8437e6e2197009556448c277d1b9a Mon Sep 17 00:00:00 2001 From: doomedraven Date: Thu, 8 Feb 2024 15:49:41 +0100 Subject: [PATCH] Update analysis_tags.py --- web/analysis/templatetags/analysis_tags.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/analysis/templatetags/analysis_tags.py b/web/analysis/templatetags/analysis_tags.py index b3597027a65..684886e06e1 100644 --- a/web/analysis/templatetags/analysis_tags.py +++ b/web/analysis/templatetags/analysis_tags.py @@ -158,7 +158,7 @@ def _print(lvl, s): _print(3, "\n") for tactic, techniques in obj.get("ATTCK", {}).items(): _print(4, "\n") - _print(4, '' + tactic + "\n") + _print(4, '' + tactic + "\n") _print(4, "\n") for technique in techniques: _print(5, "
  • " + technique + "
  • \n") @@ -190,7 +190,7 @@ def _print(lvl, s): _print(3, "\n") for objective, behaviors in obj.get("MBC", {}).items(): _print(4, "\n") - _print(4, '' + objective + "\n") + _print(4, '' + objective + "\n") _print(4, "\n") for behavior in behaviors: _print(5, "
  • " + behavior + "
  • \n")