summary refs log tree commit diff
diff options
context:
space:
mode:
authorHarry Wada <harrywada@gmail.com>2019-10-20 09:33:58 -0500
committerJoel Challis <git@zvecr.com>2019-10-20 15:33:58 +0100
commitf64d9b06215bb08d7f77aeba126c0804fffd0064 (patch)
tree9b53cd95f8f0ba9b0ace7f20b422d073658dcd11
parent8baed70ed10fadd480511425d0f1b0bbf2d2f109 (diff)
Fix detection of ModemManager (#7076)
-rwxr-xr-xlib/python/qmk/cli/doctor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py
index 2b6a03e443..309de0c671 100755
--- a/lib/python/qmk/cli/doctor.py
+++ b/lib/python/qmk/cli/doctor.py
@@ -52,10 +52,10 @@ def doctor(cli):
         if shutil.which('systemctl'):
             mm_check = subprocess.run(['systemctl', 'list-unit-files'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, timeout=10, universal_newlines=True)
             if mm_check.returncode == 0:
-                mm = True
+                mm = False
                 for line in mm_check.stdout.split('\n'):
                     if 'ModemManager' in line and 'enabled' in line:
-                        mm = False
+                        mm = True
 
                 if mm:
                     cli.log.warn("{bg_yellow}Detected ModemManager. Please disable it if you are using a Pro-Micro.")