Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TransparentLC committed Feb 14, 2023
1 parent 7f37780 commit 3c2dcf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def completeCallback():
te = time.perf_counter()
self.buttonProcess.config(state=tk.NORMAL)
notification.title = i18n.getTranslatedString('ToastCompletedTitle')
notification.message = i18n.getTranslatedString('ToastCompletedMessage').format(outputPath, (te - ts) / 1000)
notification.message = i18n.getTranslatedString('ToastCompletedMessage').format(outputPath, te - ts)
notification.send(False)
def failCallback(ex: Exception):
self.buttonProcess.config(state=tk.NORMAL)
Expand Down

0 comments on commit 3c2dcf5

Please sign in to comment.