From 6c179cdaece85a12226f8ab2a62081e943487888 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sat, 20 Jun 2015 18:12:26 -0400 Subject: [PATCH] Fix UnsupportedTextureError --- korman/exporter/explosions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/exporter/explosions.py b/korman/exporter/explosions.py index bd385e7..16f1ee6 100644 --- a/korman/exporter/explosions.py +++ b/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))