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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-03-12 23:56:49 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-03-13 00:04:33 +0400
commita107117aee4b9eda2954f174c4d91240e42b6efc (patch)
treeea595f8bbcdc4af43c0c7dda485d6f1e15fcd6e3 /io_scene_fbx/json2fbx.py
parent3879603620c4241bec612665dd97ab4b598559c6 (diff)
Style cleanup (pep8).
Diffstat (limited to 'io_scene_fbx/json2fbx.py')
-rwxr-xr-xio_scene_fbx/json2fbx.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/io_scene_fbx/json2fbx.py b/io_scene_fbx/json2fbx.py
index 808564ad..f979c429 100755
--- a/io_scene_fbx/json2fbx.py
+++ b/io_scene_fbx/json2fbx.py
@@ -140,7 +140,8 @@ def parse_json(json_root):
def json2fbx(fn):
- import os, json
+ import os
+ import json
fn_fbx = "%s.fbx" % os.path.splitext(fn)[0]
print("Writing: %r " % fn_fbx, end="")