File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -657,12 +657,12 @@ def get_msg_without_time(line: str) -> Optional[str]:
657
657
continue
658
658
if (not start_ranging_time ) and (start_ranging_line == msg ):
659
659
start_ranging_time = get_time_from_line (
660
- line , date_regexp , file_path , 0 # timezone_offset
660
+ line , date_regexp , file_path , 0 # timezone_offset
661
661
)
662
662
if (not stop_ranging_time ) and bool (start_ranging_time ):
663
663
if ": Completed test" == msg :
664
664
stop_ranging_time = get_time_from_line (
665
- line , date_regexp , file_path , 0 # timezone_offset
665
+ line , date_regexp , file_path , 0 # timezone_offset
666
666
)
667
667
break
668
668
@@ -677,7 +677,7 @@ def get_msg_without_time(line: str) -> Optional[str]:
677
677
try :
678
678
log_time = None
679
679
log_time = get_time_from_line (
680
- line , date_regexp , file_path , 0 # timezone_offset
680
+ line , date_regexp , file_path , 0 # timezone_offset
681
681
)
682
682
except LineWithoutTimeStamp :
683
683
assert (
You can’t perform that action at this time.
0 commit comments