Skip to content

Commit 8737bb6

Browse files
committed
Corrected incorrect positional argument for loading passwords (relevant for MFE/MFM files)
1 parent a7dde05 commit 8737bb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# setup filesystem (local/S3), load DBC files and list log files for processing
1818
fs = setup_fs(inp.s3, inp.key, inp.secret, inp.endpoint, inp.region, passwords=inp.pw)
1919
db_list = load_dbc_files(inp.dbc_paths)
20-
log_files = list_log_files(fs, inp.devices, start_times, inp.pw)
20+
log_files = list_log_files(fs, inp.devices, start_times, True, inp.pw)
2121

2222
# process log files and write extracted signals to InfluxDB
2323
proc = ProcessData(fs, db_list, inp.signals, inp.days_offset)

0 commit comments

Comments
 (0)