Skip to content

Commit

Permalink
Fixed Windows 10 detection breaking MacOS builds
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeMartin-ICL committed Dec 16, 2022
1 parent 7a14a8b commit 3a74108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/steamStorageOptimiser.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
init()

update_api_threshold = 1024 ** 3
tick = '√' if getattr(sys, 'frozen', False) and int(
platform.release()) == 10 else '✓'
tick = '√' if getattr(
sys, 'frozen', False) and platform.release() == '10' else '✓'


def load_config():
Expand Down

0 comments on commit 3a74108

Please sign in to comment.