From f28c6ab3097741fd6885005312bbc9fb73b4f428 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Wed, 31 Mar 2021 11:51:20 +0200 Subject: [PATCH] Removed prints --- src/cpl_cli/publish/publisher_service.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cpl_cli/publish/publisher_service.py b/src/cpl_cli/publish/publisher_service.py index b9c3a885..0c1bc1ef 100644 --- a/src/cpl_cli/publish/publisher_service.py +++ b/src/cpl_cli/publish/publisher_service.py @@ -141,11 +141,9 @@ class PublisherService(PublisherABC): relative_path = os.path.relpath(r) file_path = os.path.join(relative_path, os.path.relpath(sub_file)) - print(file_path) self._included_files.append(os.path.relpath(file_path)) elif os.path.isfile(rel_path): - print(rel_path) self._included_files.append(rel_path) for r, d, f in os.walk(self._build_settings.source_path):