diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-21 21:19:39 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-21 21:19:44 +0200 |
commit | 96dadf4b29e6ed61ba23577ab3998cf6b93a6c40 (patch) | |
tree | 81977ca68b805ae06182a242679d916d51efef23 /python | |
parent | 1d2e99735f465a351b74affb382a10c78b607a9f (diff) | |
download | vyos-1x-96dadf4b29e6ed61ba23577ab3998cf6b93a6c40.tar.gz vyos-1x-96dadf4b29e6ed61ba23577ab3998cf6b93a6c40.zip |
vyos.certbot: T3641: adjust to new python3-certbot-nginx API
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/certbot_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/certbot_util.py b/python/vyos/certbot_util.py index df42d4780..bcb78381f 100644 --- a/python/vyos/certbot_util.py +++ b/python/vyos/certbot_util.py @@ -1,7 +1,7 @@ # certbot_util -- adaptation of certbot_nginx name matching functions for VyOS # https://github.com/certbot/certbot/blob/master/LICENSE.txt -from certbot_nginx import parser +from certbot_nginx._internal import parser NAME_RANK = 0 START_WILDCARD_RANK = 1 |