Skip to content

Commit 6a25768

Browse files
committed
correctly read export options
1 parent c6755ce commit 6a25768

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io_ogre/ui/export.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def execute(self, context):
8383
logger.info("self.filepath %s"%self.filepath)
8484

8585
kw = {}
86-
for name in dir(self):
86+
for name in dir(_OgreCommonExport_):
8787
if name.startswith('EX_'):
8888
kw[ name[3:] ] = getattr(self,name)
8989
config.update(**kw)

0 commit comments

Comments
 (0)