From a83c17f21e17b6431c61c90a1a779871ece9480e Mon Sep 17 00:00:00 2001 From: Aarush289 Date: Sat, 25 Oct 2025 13:28:40 +0530 Subject: [PATCH] Removed unnecessary print statements Signed-off-by: Aarush289 --- nettacker/core/hostcheck.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/nettacker/core/hostcheck.py b/nettacker/core/hostcheck.py index d5e1e411..5a5a07c0 100644 --- a/nettacker/core/hostcheck.py +++ b/nettacker/core/hostcheck.py @@ -42,8 +42,6 @@ def valid_hostname( host = host[:-1] parts = host.split(".") if len(parts) < 2 and not allow_single_label: - # log.warn("Its a name like google") - print("itegb") return False return all(_LABEL.match(p) for p in parts)