Skip to content

Commit

Permalink
Merge pull request #52 from ericdill/template-remove-message
Browse files Browse the repository at this point in the history
MNT: Template out the message
  • Loading branch information
parente committed May 23, 2017
2 parents e1d2aae + ddbd97e commit 897f2eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda_mirror/conda_mirror.py
Expand Up @@ -267,8 +267,8 @@ def _remove_package(pkg_path, reason):
reason : str
The reason why the package is being removed
"""
msg = "Removing: %s. Reason: %s"
logger.warning(msg, pkg_path, reason)
msg = "Removing: %s. Reason: %s" % (pkg_path, reason)
logger.warning(msg)
os.remove(pkg_path)
return pkg_path, msg

Expand Down

0 comments on commit 897f2eb

Please sign in to comment.