Skip to content

Commit

Permalink
fix log string in CompileMultiPycAction
Browse files Browse the repository at this point in the history
  • Loading branch information
jjhelmus committed Dec 7, 2018
1 parent d8b70e7 commit 9321dc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda/core/path_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ def execute(self):
def reverse(self):
# this removes all pyc files even if they were not created
if self._execute_successful:
log.trace("reversing pyc creation %s", self.target_full_path)
log.trace("reversing pyc creation %s", ' '.join(self.target_full_paths))
for target_full_path in self.target_full_paths:
rm_rf(target_full_path)

Expand Down

0 comments on commit 9321dc7

Please sign in to comment.