Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-11-25 07:42:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-25 07:42:10 +0400
commitb847fba4910dadf0337ec7f35cf78aa8c1f5aa0b (patch)
tree7d6d48452e3a52a007b3abc92cdb04233458df33 /io_scene_fbx
parent199da926e833a87c90e817f47bbee9d586d195ae (diff)
minor pep8 edits
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/export_fbx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index 89bc275b..e7c61f18 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -879,7 +879,7 @@ def save_single(operator, scene, filepath="",
'\n\t\t\tProperty: "UseMotionBlur", "bool", "",0'
'\n\t\t\tProperty: "UseRealTimeMotionBlur", "bool", "",1'
'\n\t\t\tProperty: "ResolutionMode", "enum", "",0'
- '\n\t\t\tProperty: "ApertureMode", "enum", "",3' # horizontal - Houdini compatible
+ '\n\t\t\tProperty: "ApertureMode", "enum", "",3' # horizontal - Houdini compatible
'\n\t\t\tProperty: "GateFit", "enum", "",2'
'\n\t\t\tProperty: "CameraFormat", "enum", "",0'
)
@@ -908,7 +908,7 @@ def save_single(operator, scene, filepath="",
fw('\n\t\t\tProperty: "NearPlane", "double", "",%.6f' % (data.clip_start * global_scale))
fw('\n\t\t\tProperty: "FarPlane", "double", "",%.6f' % (data.clip_end * global_scale))
-
+
fw('\n\t\t\tProperty: "FilmWidth", "double", "",%.6f' % filmwidth)
fw('\n\t\t\tProperty: "FilmHeight", "double", "",%.6f' % filmheight)
fw('\n\t\t\tProperty: "FilmAspectRatio", "double", "",%.6f' % filmaspect)