Commit f3207f9e authored by Reinout van Rees's avatar Reinout van Rees

Raising UserError instead of just logging an error

parent 5a79e918
......@@ -1637,7 +1637,7 @@ def unpack_wheel(location, dest):
wheel = Wheel(location)
wheel.install_as_egg(os.path.join(dest, wheel.egg_name()))
else:
logger.error(WHEEL_WARNING, location)
raise zc.buildout.UserError(WHEEL_WARNING % location)
UNPACKERS = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment