From 8c14372356a562c5b33a402479055afd1e84babf Mon Sep 17 00:00:00 2001 From: GeorgianaElena Date: Tue, 2 Jun 2020 18:29:12 +0300 Subject: [PATCH] Remove debug print --- tljh/traefik.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tljh/traefik.py b/tljh/traefik.py index cc05cd1..81342b7 100644 --- a/tljh/traefik.py +++ b/tljh/traefik.py @@ -126,7 +126,6 @@ def ensure_traefik_config(state_dir): traefik_toml = load_extra_config(traefik_std_config_file, traefik_extra_config_dir) # Dump the dict into a toml-formatted string and write it to file - print(f"Writing traefik config {traefik_toml}...") with open(traefik_std_config_file, "w") as f: os.fchmod(f.fileno(), 0o600) toml.dump(traefik_toml, f)