Fix errors
This commit is contained in:
parent
510138f525
commit
eee6dd3544
|
@ -201,8 +201,8 @@ def check_udev_rules():
|
|||
ok = False
|
||||
cli.log.warn("{bg_yellow}Detected ModemManager without the necessary udev rules. Please either disable it or set the appropriate udev rules if you are using a Pro Micro.")
|
||||
if not rules.issubset(current_rules):
|
||||
for bootloader, rules in deprecated_rules.items():
|
||||
if deprecated_rule and deprecated_rule.issubset(current_rules):
|
||||
for bootloader, rule in deprecated_rules.items():
|
||||
if rule and rule.issubset(current_rules):
|
||||
cli.log.warn("{bg_yellow}Found old, deprecated udev rules for '%s' boards. The new rules on https://docs.qmk.fm/#/faq_build?id=linux-udev-rules offer better security with the same functionality.", bootloader)
|
||||
else:
|
||||
cli.log.warn("{bg_yellow}Missing udev rules for '%s' boards. You'll need to use `sudo` in order to flash them.", bootloader)
|
||||
|
|
Loading…
Reference in New Issue