Skip to content

Commit

Permalink
Fix mismatch between dry-run and normal verbosity messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kentzo committed Sep 19, 2018
1 parent d37cefa commit b2adcf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git_archive_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b2adcf5

Please sign in to comment.