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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--release/scripts/lightwave_import.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/lightwave_import.py b/release/scripts/lightwave_import.py
index b59d582d680..2049fbd2380 100644
--- a/release/scripts/lightwave_import.py
+++ b/release/scripts/lightwave_import.py
@@ -661,7 +661,7 @@ def read_clip(lwochunk, dir_part):
# Should not happen but lw can import so we should too
return
- image_index, = struct.unpack(">L", )
+ image_index, = struct.unpack(">L", data_str)
clip_dict['ID'] = image_index
i = 4
while(i < lwochunk.chunksize):