Skip to content

Commit

Permalink
Add time stamp when json are created
Browse files Browse the repository at this point in the history
  • Loading branch information
TLNBS2405 committed Feb 12, 2024
1 parent 330006d commit 32ebfda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/module/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ def create_json_movelists(character_list_path: str) -> List[character.Character]
cha = wavu_importer.import_character(character_meta)
cha.export_movelist_as_json()
cha_list.append(cha)
print("Character jsons are successfully created")
time_now = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(f'{time_now} - Character jsons are successfully created')
return cha_list


Expand Down

0 comments on commit 32ebfda

Please sign in to comment.