io_blend_utils: fixed missing variable in error msg

This commit is contained in:
Sybren A. Stüvel 2017-04-12 11:22:40 +02:00
parent 8f2c04c033
commit 7c1590d8d3
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ def pythonpath() -> str:
# Find the wheel to run.
wheelpath = pathlib.Path(__file__).with_name(BAM_WHEEL_FILE)
if not wheelpath.exists():
raise EnvironmentError('Wheel file %s does not exist!')
raise EnvironmentError('Wheel file %s does not exist!' % wheelpath)
log.info('Using wheel file %s to run BAM-Pack', wheelpath)