summary refs log tree commit diff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rwxr-xr-xlib/python/qmk/cli/doctor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py
index 577588492d..41db41184f 100755
--- a/lib/python/qmk/cli/doctor.py
+++ b/lib/python/qmk/cli/doctor.py
@@ -170,7 +170,7 @@ def doctor(cli):
     # Determine our OS and run platform specific tests
     OS = platform.platform().lower()  # noqa (N806), uppercase name is ok in this instance
 
-    if 'darwin' or 'macos' in OS:
+    if 'darwin' in OS or 'macos' in OS:
         if not os_test_macos():
             ok = False
     elif 'linux' in OS: