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>2012-11-14 16:17:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-14 16:17:05 +0400
commite86e443caf949b6060196fe066756af866617620 (patch)
treef2c855934a0bff630baa14a841269dd67b9f0393 /io_scene_fbx/export_fbx.py
parent81ef518e009705d1cfbf4843e06c74553fd26f92 (diff)
use alternate syntax to clear lists
Diffstat (limited to 'io_scene_fbx/export_fbx.py')
-rw-r--r--io_scene_fbx/export_fbx.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index ce1de53e..1c35fe88 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -2928,12 +2928,12 @@ Takes: {''')
mapping.clear()
del mapping
- ob_arms[:] = []
- ob_bones[:] = []
- ob_cameras[:] = []
- ob_lights[:] = []
- ob_meshes[:] = []
- ob_null[:] = []
+ del ob_arms[:]
+ del ob_bones[:]
+ del ob_cameras[:]
+ del ob_lights[:]
+ del ob_meshes[:]
+ del ob_null[:]
file.close()