We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc01a22 commit 745f221Copy full SHA for 745f221
backdrop.py
@@ -1714,11 +1714,12 @@ def check_for_updates_in_background():
1714
if __name__ == '__main__':
1715
PLATFORM_WINDOWS = 'Windows'
1716
PLATFORM_LINUX = 'Linux'
1717
+ PLATFORM_MAC = 'Darwin'
1718
1719
SYS_PLATFORM = platform.system()
1720
1721
# Platform sanity check
- if SYS_PLATFORM not in [PLATFORM_WINDOWS, PLATFORM_LINUX]:
1722
+ if SYS_PLATFORM not in [PLATFORM_WINDOWS, PLATFORM_LINUX, PLATFORM_MAC]:
1723
logging.error('This operating system is not supported')
1724
exit()
1725
0 commit comments