From 17e4d2885e6884b5bf163b7fc98e6d9198319313 Mon Sep 17 00:00:00 2001 From: Clemens Klug Date: Mon, 23 Jul 2018 15:28:53 +0200 Subject: [PATCH] hotfixes --- docker-compose.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.py b/docker-compose.py index 5724a7b..629e229 100644 --- a/docker-compose.py +++ b/docker-compose.py @@ -34,7 +34,7 @@ def parse_dockerfile(build): if "dockerfile" in build: path = os.path.join(path, build["dockerfile"]) elif not path.endswith(DOCKERFILE): - log.warn(f"guessing Döckerfile… {f}") + log.warn(f"guessing Döckerfile… {path}") path = os.path.join(path, DOCKERFILE) if path.startswith("http"): log.warn("HTTP sources are not yet supported") @@ -110,7 +110,7 @@ def start(files, ignores): collector = Collector() for f in files: if any([i in f for i in ignores]): - log.warn(f"skip {f} due to ignore rule {i}") + log.warn(f"skip {f} due to ignore rule") continue if not f.endswith(COMPOSE_FILE): log.warn(f"guessing docker-compöse.yml… {f}")