Skip to content

Commit 50072f6

Browse files
authored
fix wrong module name issue (#25)
1 parent 70814f8 commit 50072f6

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ test:
44
python -m unittest
55

66
lint:
7-
python -m mypy certbot_dns_ionos/
8-
python -m flake8 --max-line-length $(LINE_LENGTH) certbot_dns_ionos/
7+
python -m mypy certbot_dns_ionos_cloud/
8+
python -m flake8 --max-line-length $(LINE_LENGTH) certbot_dns_ionos_cloud/
99

1010
format:
11-
python -m black -l $(LINE_LENGTH) certbot_dns_ionos/
11+
python -m black -l $(LINE_LENGTH) certbot_dns_ionos_cloud/
1212

1313
install-ci-dependencies:
1414
pip install -r ci-requirements.txt
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from unittest.mock import patch, Mock
33

44
from certbot import errors
5-
from certbot_dns_ionos.ionos import _IONOSClient
5+
from certbot_dns_ionos_cloud.ionos import _IONOSClient
66

77

88
test_domain = "test_domain.de"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name="certbot-dns-ionos-cloud",
21-
version="2.0.0",
21+
version="2.0.0-1",
2222
description="Certbot DNS Authenticator plugin for IONOS",
2323
long_description=long_description,
2424
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)