aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/os_helpers
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/os_helpers')
-rw-r--r--lib/python/qmk/os_helpers/linux/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/os_helpers/linux/__init__.py b/lib/python/qmk/os_helpers/linux/__init__.py
index a04ac4f8a..9e73964e4 100644
--- a/lib/python/qmk/os_helpers/linux/__init__.py
+++ b/lib/python/qmk/os_helpers/linux/__init__.py
@@ -95,7 +95,7 @@ def check_udev_rules():
95 95
96 # Collect all rules from the config files 96 # Collect all rules from the config files
97 for rule_file in udev_rules: 97 for rule_file in udev_rules:
98 for line in rule_file.read_text().split('\n'): 98 for line in rule_file.read_text(encoding='utf-8').split('\n'):
99 line = line.strip() 99 line = line.strip()
100 if not line.startswith("#") and len(line): 100 if not line.startswith("#") and len(line):
101 current_rules.add(line) 101 current_rules.add(line)