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)