Skip to content

Commit c4bf2e5

Browse files
committed
webinterface: Fix ImportError: cannot import name 'escape' from 'flask'
1 parent 30c9b7a commit c4bf2e5

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
1.1.15 (Oct 31st, 2025)
22
- Fix FP connection to port 0 for IGMP flows.
33
- Support monitoring two interfaces when Slips is running as an access point.
4-
- Improve running slips on a growing zeek directory: Slips can now detect the interface, host IP and gateway IP.
5-
- Handle IDMEFv2 API deprecation warning.
6-
4+
- Improve running slips on a growing zeek directory (using -g): Slips can now detect the interface, host IP and gateway IP.
75

86
1.1.14 (Oct 14th, 2025)
97
- Security Patch for CVE-2025-49844: Force use of Redis version 8.2.2

webinterface/analysis/analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: GPL-2.0-only
33
from flask import Blueprint
44
from flask import render_template
5-
from flask import escape
5+
from markupsafe import escape
66
import json
77
from collections import defaultdict
88
from typing import Dict, List

0 commit comments

Comments
 (0)