diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-03-17 08:43:25 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-03-17 08:43:25 +0100 |
commit | 815bb24acd320d25deb2e40978fdfbe170ded01b (patch) | |
tree | 82c17e85d1dc0d63435c0004d1cd622f74875d18 /bin | |
parent | 23c614d2de259e6926c20069345d634ae1712662 (diff) |
analyze-log: fix typo in terminal output
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/analyze-log.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/analyze-log.py b/bin/analyze-log.py index 901fb0f..2c45318 100755 --- a/bin/analyze-log.py +++ b/bin/analyze-log.py @@ -286,7 +286,7 @@ def main(): dfatool.cli.print_model_complexity(model) if args.export_model: - print(f"Exportding model to {args.export_model}") + print(f"Exporting model to {args.export_model}") json_model = model.to_json() with open(args.export_model, "w") as f: json.dump( |