Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Commit

Permalink
fixes #55 don't move old logfiles to zipfile in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalkolar committed May 25, 2021
1 parent 7a3375c commit 9392954
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mesmerize/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ def exception_hook(exc_type, exc_value, traceback):
logging.StreamHandler(sys.stderr)
)

move_old_logfiles(root_logger, log_file_dir)
if not configuration.IS_WINDOWS:
move_old_logfiles(root_logger, log_file_dir)

if not len(sys.argv) > 1:
app = start_welcome_window()
Expand Down

0 comments on commit 9392954

Please sign in to comment.