Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2017-04-12 12:22:40 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2017-04-12 12:22:40 +0300
commit7c1590d8d387e0afb0643854b4bf76179b73f86e (patch)
tree2fbfc996b7be56ff18b08bf53b6d1d6b523d9d08 /io_blend_utils
parent8f2c04c033943fbaaaf744e84dd9ba37ef39ba0c (diff)
io_blend_utils: fixed missing variable in error msg
Diffstat (limited to 'io_blend_utils')
-rw-r--r--io_blend_utils/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_blend_utils/__init__.py b/io_blend_utils/__init__.py
index 5e6f6fe8..7e3464ff 100644
--- a/io_blend_utils/__init__.py
+++ b/io_blend_utils/__init__.py
@@ -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)