Fix typo in error message

This commit is contained in:
rdb 2015-08-23 14:56:53 +02:00
parent 563f6843a2
commit 09f2bea96f

View File

@ -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