File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,11 @@ def main():
110
110
trial_id_to_youtube_logs = dict ()
111
111
trial_id_to_stall_logs = dict ()
112
112
113
- for f , trial_id in directory_traversal_helper .get_files_matching_regex (youtube_logs_directory , "[/] stall-log-(.+).txt" ):
113
+ for f , trial_id in directory_traversal_helper .get_files_matching_regex (youtube_logs_directory , "stall-log-(.+).txt" ):
114
114
assert (trial_id not in trial_id_to_stall_logs )
115
115
trial_id_to_stall_logs [trial_id ] = f
116
116
117
- for f , trial_id in directory_traversal_helper .get_files_matching_regex (youtube_logs_directory , "[/] log-(.+).txt" ):
117
+ for f , trial_id in directory_traversal_helper .get_files_matching_regex (youtube_logs_directory , "^ log-(.+).txt" ):
118
118
assert (trial_id not in trial_id_to_youtube_logs )
119
119
trial_id_to_youtube_logs [trial_id ] = f
120
120
You can’t perform that action at this time.
0 commit comments