We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52eb112 commit a63f3f6Copy full SHA for a63f3f6
1 file changed
meshtastic/analysis/__main__.py
@@ -2,6 +2,7 @@
2
3
import argparse
4
import logging
5
+import os
6
from pathlib import Path
7
from typing import cast, List
8
@@ -191,7 +192,7 @@ def main():
191
192
parser = create_argparser()
193
args = parser.parse_args()
194
if not args.slog:
- args.slog = str(Path(root_dir(), "latest"))
195
+ args.slog = os.path.join(root_dir(), "latest")
196
197
app = create_dash(slog_path=args.slog)
198
port = 8051
0 commit comments