Minor raspberry fix

This commit is contained in:
AresValley
2020-04-18 21:02:28 +02:00
parent 995696f11a
commit 5af0faaa65

View File

@@ -21,7 +21,7 @@ def _is_linux_os():
IS_MAC = _is_mac_os()
IS_LINUX = _is_linux_os()
IS_WINDOWS = _is_win_os()
IS_RASPBIAN = IS_LINUX and 'arm' in platform.machine().lowercase()
IS_RASPBIAN = IS_LINUX and 'arm' in platform.machine().lower()
def get_os():