4
4
mirror of https://github.com/H-uru/korman.git synced 2025-07-14 14:27:36 +00:00

Fix UnsupportedTextureError

This commit is contained in:
2015-06-20 18:12:26 -04:00
parent d55d643efe
commit 6c179cdaec

View File

@ -64,4 +64,4 @@ class UndefinedPageError(ExportError):
class UnsupportedTextureError(ExportError):
def __init__(self, texture, material):
super(ExportError, self).__init__("Cannot export texture '{}' on material '{}' -- unsupported type '{}'".format(texture.name, texture.type, material.name))
super(ExportError, self).__init__("Cannot export texture '{}' on material '{}' -- unsupported type '{}'".format(texture.name, material.name, texture.type))