From 0ffddb8e4184b20b530667b0e942e6ab92c82d29 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 22 Feb 2026 20:02:14 +0100 Subject: [PATCH] fix: write cProfile to data/ volume for host access Co-Authored-By: Claude Opus 4.6 --- src/derp/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/derp/cli.py b/src/derp/cli.py index 38e83bd..66506d9 100644 --- a/src/derp/cli.py +++ b/src/derp/cli.py @@ -37,8 +37,8 @@ def build_parser() -> argparse.ArgumentParser: "--cprofile", metavar="PATH", nargs="?", - const="derp.prof", - help="enable cProfile; dump stats to PATH [derp.prof]", + const="data/derp.prof", + help="enable cProfile; dump stats to PATH [data/derp.prof]", ) p.add_argument( "--tracemalloc",