Skip to content

Commit

Permalink
Remove hyphen between package and version in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
bennuttall committed Jul 25, 2021
1 parent ae01cae commit a8f91ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piwheels/master/mr_chase.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def do_remove_version(self, package, version, reason):
package, version)
return 'ERROR', 'unknown package version %s-%s' % (
package, version)
self.logger.info('removing %s-%s', package, version)
self.logger.info('removing %s %s', package, version)
if reason:
self.db.skip_package_version(package, version, reason)
self.web_queue.send_msg('DELVER', [package, version])
Expand Down

0 comments on commit a8f91ae

Please sign in to comment.