Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix variable name in _scene_format method of Blender exporter #11571

Merged
merged 1 commit into from
Jun 20, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions utils/exporters/blender/addons/io_three/exporter/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def _geometry_metadata(self, metadata):
metadata[constants.FACES] = faces

def _scene_format(self):
"""Format the output for Scene compatability
"""Format the output for Scene compatibility

:rtype: dict

Expand All @@ -358,7 +358,7 @@ def _scene_format(self):
data.update(self._component_data())
draw_calls = self.get(constants.DRAW_CALLS)
if draw_calls is not None:
geometry_data[constants.DRAW_CALLS] = draw_calls
data[constants.DRAW_CALLS] = draw_calls

return data

Expand Down