mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Add core/letsencrypt/jobs to Python path in certbot-new.py
This commit is contained in:
parent
b26cee1917
commit
d0be0fc2e0
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ from subprocess import DEVNULL, PIPE, STDOUT, Popen, run
|
|||
from sys import exit as sys_exit, path as sys_path
|
||||
from typing import Dict, Literal, Type, Union
|
||||
|
||||
for deps_path in [join(sep, "usr", "share", "bunkerweb", *paths) for paths in (("deps", "python"), ("utils",), ("db",))]:
|
||||
for deps_path in [join(sep, "usr", "share", "bunkerweb", *paths) for paths in (("deps", "python"), ("utils",), ("db",), ("core", "letsencrypt", "jobs"))]:
|
||||
if deps_path not in sys_path:
|
||||
sys_path.append(deps_path)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue