diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-22 07:14:08 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-22 07:14:08 +0100 |
commit | c7c6c31a5a67602344b3c652d7de91409df3d07e (patch) | |
tree | 85f778cb43f21a0e9bc0fcd6d0b6578a1c5f35df /bin | |
parent | 4c313e3bc34ed660d68989bd6b538d30a9f442ed (diff) |
analyze-log: actually support --export-dot
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/analyze-log.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/analyze-log.py b/bin/analyze-log.py index 8ab77a4..11d8f87 100755 --- a/bin/analyze-log.py +++ b/bin/analyze-log.py @@ -305,6 +305,9 @@ def main(): json_model, f, indent=2, sort_keys=True, cls=dfatool.utils.NpEncoder ) + if args.export_dot: + dfatool.cli.export_dot(model, args.export_dot) + if args.plot_param: for kv in args.plot_param.split(";"): try: |