mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 18:31:55 -04:00
Fix typo in error message
This commit is contained in:
parent
563f6843a2
commit
09f2bea96f
@ -855,7 +855,7 @@ class Loader(DirectObject):
|
|||||||
def loadShader (self, shaderPath, okMissing = False):
|
def loadShader (self, shaderPath, okMissing = False):
|
||||||
shader = ShaderPool.loadShader (shaderPath)
|
shader = ShaderPool.loadShader (shaderPath)
|
||||||
if not shader and not okMissing:
|
if not shader and not okMissing:
|
||||||
message = 'Could not shader file: %s' % (shaderPath)
|
message = 'Could not load shader file: %s' % (shaderPath)
|
||||||
raise IOError, message
|
raise IOError, message
|
||||||
return shader
|
return shader
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user