diff --git a/io_scene_obj/export_obj.py b/io_scene_obj/export_obj.py
index 2acd861eaddf94c2d308b5046dc71326193ecfc1..90d693168ed7e2aede653feeb779bbe7b35ef2aa 100644
--- a/io_scene_obj/export_obj.py
+++ b/io_scene_obj/export_obj.py
@@ -124,7 +124,7 @@ def write_mtl(scene, filepath, path_mode, copy_set, mtl_dict):
             image_map = {}
             # backwards so topmost are highest priority
             for mtex in reversed(mat.texture_slots):
-                if mtex and mtex.texture.type == 'IMAGE':
+                if mtex and mtex.texture and mtex.texture.type == 'IMAGE':
                     image = mtex.texture.image
                     if image:
                         # texface overrides others