]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/export_scene.py
Remove extraneous semicolons from Python code
[libs/gl.git] / blender / io_mspgl / export_scene.py
index 77d7d09bd9761543fca3e159ae1be5507687be5f..84e6be3e6aa40605f07d80ceeb895895db8c82ea 100644 (file)
@@ -3,7 +3,6 @@ import os
 
 class SceneExporter:
        def __init__(self):
-               self.external_tech = True
                self.resource_collection = True
 
        def export(self, context, out_file):
@@ -18,7 +17,6 @@ class SceneExporter:
 
                from .export_object import ObjectExporter
                object_export = ObjectExporter()
-               object_export.external_tech = self.external_tech
 
                object_prototypes = {}
                unique_objects = []
@@ -84,4 +82,4 @@ class SceneExporter:
                                axis = q.axis
                        out_file.write("rotation", angle*180/math.pi, axis[0], axis[1], axis[2])
                        out_file.write("scale", o.scale[0], o.scale[1], o.scale[2])
-                       out_file.end();
+                       out_file.end()