From b2adcf58b34c2b1f9924b842b7d6b7905bf4a059 Mon Sep 17 00:00:00 2001 From: Ilya Kulakov Date: Wed, 19 Sep 2018 15:45:08 -0700 Subject: [PATCH] Fix mismatch between dry-run and normal verbosity messages. --- git_archive_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_archive_all.py b/git_archive_all.py index 49edbda..1598eab 100755 --- a/git_archive_all.py +++ b/git_archive_all.py @@ -164,7 +164,7 @@ def add_file(file_path, arcname): raise ValueError("unknown format: {0}".format(output_format)) def archiver(file_path, arcname): - self.LOG.debug("Compressing {0} => {1}...".format(file_path, arcname)) + self.LOG.debug("{0} => {1}".format(file_path, arcname)) add_file(file_path, arcname) else: archive = None