Browse Source

Fix UnsupportedTextureError

pull/7/head
Adam Johnson 9 years ago
parent
commit
6c179cdaec
  1. 2
      korman/exporter/explosions.py

2
korman/exporter/explosions.py

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

Loading…
Cancel
Save