unify time format

pull/495/head
JiaoPL 2023-11-13 18:53:57 +08:00
parent 815678f73a
commit 343732b4f9
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ def filter_kwargs(func, kwargs):
def launch_time():
global CURRENT_TIME
if not CURRENT_TIME:
CURRENT_TIME = datetime.now().strftime("%m-%d:%H:%M:%S")
CURRENT_TIME = datetime.now().strftime("%m-%d-%H:%M:%S")
return CURRENT_TIME