diff --git a/src/common/core/letsencrypt/jobs/certbot-new.py b/src/common/core/letsencrypt/jobs/certbot-new.py index 0c45c27a4..044afab4d 100644 --- a/src/common/core/letsencrypt/jobs/certbot-new.py +++ b/src/common/core/letsencrypt/jobs/certbot-new.py @@ -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)