Skip to content

Commit

Permalink
correctly read export options
Browse files Browse the repository at this point in the history
  • Loading branch information
paroj committed Nov 17, 2017
1 parent c6755ce commit 6a25768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io_ogre/ui/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def execute(self, context):
logger.info("self.filepath %s"%self.filepath)

kw = {}
for name in dir(self):
for name in dir(_OgreCommonExport_):
if name.startswith('EX_'):
kw[ name[3:] ] = getattr(self,name)
config.update(**kw)
Expand Down

0 comments on commit 6a25768

Please sign in to comment.