We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e4ce73 commit 1a9ffb1Copy full SHA for 1a9ffb1
custom-domain/dstack-ingress/scripts/certman.py
@@ -102,7 +102,7 @@ def install_plugin(self) -> bool:
102
103
# Verify plugin installation
104
try:
105
- imported_module = __import__(self.provider.CERTBOT_PLUGIN_MODULE)
+ __import__(self.provider.CERTBOT_PLUGIN_MODULE)
106
print(f"Plugin {self.provider.CERTBOT_PLUGIN} successfully imported")
107
108
# Test if plugin is recognized by certbot
@@ -149,8 +149,6 @@ def install_plugin(self) -> bool:
149
except Exception as e:
150
print(f"Plugin verification warning: {e}")
151
return True
152
-
153
- return True
154
155
def _ensure_certbot_in_env(self) -> None:
156
"""Ensure certbot is installed in the current Python environment."""
0 commit comments