From d66a7159b7f9ad28d07bc3ca4ac9b8f57efab91e Mon Sep 17 00:00:00 2001 From: Hendrik Hogertz Date: Thu, 20 Nov 2025 03:21:58 +0100 Subject: [PATCH] Don't print credentials --- certbot_dns_corenetworks/dns_corenetworks.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/certbot_dns_corenetworks/dns_corenetworks.py b/certbot_dns_corenetworks/dns_corenetworks.py index 58af110..cbabbed 100644 --- a/certbot_dns_corenetworks/dns_corenetworks.py +++ b/certbot_dns_corenetworks/dns_corenetworks.py @@ -85,8 +85,6 @@ class _CoreNetworksAPIClient: return self.token try: - print(self.username) - print(self.password) response = requests.post( f"{API_BASE_URL}/auth/token", json={"login": self.username, "password": self.password},