Skip to content

Commit 5666eb5

Browse files
FIX: Error with time.py
I've got an error ``` Exception in thread Thread-1 (parse_console_logs_and_build_conversation_history): Traceback (most recent call last): File "C:\AIstuff\TF2-GPTChatBot\modules\utils\time.py", line 43, in get_minutes_from_str struct_time = time.strptime(time_str, "%H:%M:%S") File "C:\Users\M8705\AppData\Local\Programs\Python\Python310\lib\_strptime.py", line 562, in _strptime_time tt = _strptime(data_string, format)[0] File "C:\Users\M8705\AppData\Local\Programs\Python\Python310\lib\_strptime.py", line 349, in _strptime raise ValueError("time data %r does not match format %r" % ValueError: time data '2:' does not match format '%H:%M:%S' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\M8705\AppData\Local\Programs\Python\Python310\lib\threading.py", line 1009, in _bootstrap_inner self.run() File "C:\Users\M8705\AppData\Local\Programs\Python\Python310\lib\threading.py", line 946, in run self._target(*self._args, **self._kwargs) File "C:\AIstuff\TF2-GPTChatBot\modules\chat.py", line 67, in parse_console_logs_and_build_conversation_history for logline in get_console_logline(): File "C:\AIstuff\TF2-GPTChatBot\modules\utils\text.py", line 210, in get_console_logline stats_regexes(line) File "C:\AIstuff\TF2-GPTChatBot\modules\utils\text.py", line 164, in stats_regexes tm = get_minutes_from_str(time_on_server) File "C:\AIstuff\TF2-GPTChatBot\modules\utils\time.py", line 46, in get_minutes_from_str struct_time = time.strptime(time_str, "%M:%S") File "C:\Users\M8705\AppData\Local\Programs\Python\Python310\lib\_strptime.py", line 562, in _strptime_time tt = _strptime(data_string, format)[0] File "C:\Users\M8705\AppData\Local\Programs\Python\Python310\lib\_strptime.py", line 349, in _strptime raise ValueError("time data %r does not match format %r" % ValueError: time data '2:' does not match format '%M:%S' ``` I asked AI to fix it, seems to work fine?
1 parent 4266d51 commit 5666eb5

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

modules/utils/time.py

+16-6
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,20 @@ def get_minutes_from_str(time_str: str) -> int:
4343
struct_time = time.strptime(time_str, "%H:%M:%S")
4444
tm = struct_time.tm_hour * 60 + struct_time.tm_min
4545
except ValueError:
46-
struct_time = time.strptime(time_str, "%M:%S")
47-
tm = struct_time.tm_min
48-
except Exception as e:
49-
main_logger.warning(f"Unhandled error while parsing time happened. ({e})")
50-
tm = 0
51-
46+
try:
47+
struct_time = time.strptime(time_str, "%M:%S")
48+
tm = struct_time.tm_min
49+
except ValueError:
50+
try:
51+
struct_time = time.strptime(time_str, "%H")
52+
tm = struct_time.tm_hour * 60
53+
except ValueError:
54+
try:
55+
struct_time = time.strptime(time_str, "%M")
56+
tm = struct_time.tm_min
57+
except ValueError:
58+
main_logger.warning(f"Invalid time format: {time_str}")
59+
tm = 0
60+
else:
61+
main_logger.info(f"Valid time format: {time_str}")
5262
return tm

0 commit comments

Comments
 (0)