aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/tools/web/static_viewer.py
diff options
context:
space:
mode:
Diffstat (limited to 'mitmproxy/tools/web/static_viewer.py')
-rw-r--r--mitmproxy/tools/web/static_viewer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/web/static_viewer.py b/mitmproxy/tools/web/static_viewer.py
index c4f8b139..416c2539 100644
--- a/mitmproxy/tools/web/static_viewer.py
+++ b/mitmproxy/tools/web/static_viewer.py
@@ -48,7 +48,7 @@ def save_flows_content(path: pathlib.Path, flows: typing.Iterable[flow.Flow]) ->
message_path = path / "flows" / f.id / m
os.makedirs(str(message_path / "content"), exist_ok=True)
- with open(str(message_path / '_content'), 'wb') as content_file:
+ with open(str(message_path / 'content.data'), 'wb') as content_file:
# don't use raw_content here as this is served with a default content type
if message:
content_file.write(message.content)