Skip to content

Commit 1cc25a0

Browse files
committed
Replaced log_parse to match correct results
1 parent 3bc1aec commit 1cc25a0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

vtr_flow/scripts/python_libs/vtr/log_parse.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,9 @@ def load_script_param(script_param):
301301
script_param = script_param.replace(" ", "_")
302302
else:
303303
script_param = "common"
304-
304+
for spec_char in [":", "<", ">", "|", "*", "?"]:
305+
# replaced to create valid URL path
306+
script_param = script_param.replace(spec_char, "_")
305307
return script_param
306308

307309

0 commit comments

Comments
 (0)