mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
fix lint again
This commit is contained in:
parent
6a0855de5d
commit
a4ab98eced
1 changed files with 1 additions and 2 deletions
|
|
@ -56,8 +56,7 @@ def get_configurator():
|
|||
os_like = util.get_systemd_os_like()
|
||||
if os_like:
|
||||
for os_name in os_like:
|
||||
if os_name in OVERRIDE_CLASSES:
|
||||
override_class = OVERRIDE_CLASSES[os_name]
|
||||
override_class = OVERRIDE_CLASSES.get(os_name)
|
||||
if not override_class:
|
||||
# No override class found, return the generic configurator
|
||||
override_class = configurator.ApacheConfigurator
|
||||
|
|
|
|||
Loading…
Reference in a new issue