We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20238d commit 42ebbcaCopy full SHA for 42ebbca
pywavefront/texture.py
@@ -77,7 +77,8 @@ def find(self, path=None):
77
try:
78
first = next(locations)
79
except StopIteration:
80
- raise ValueError("Cannot locate texture in search path: {}".format(search_path))
+ raise ValueError("Cannot locate texture `{}` in search path: {}".format(
81
+ self._name, search_path))
82
83
return str(first)
84
0 commit comments