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:
authorCampbell Barton <ideasman42@gmail.com>2008-01-25 23:44:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-01-25 23:44:36 +0300
commita4c8a5b670fe759d136ca843b91b5e3a93ec5313 (patch)
tree5dd671fe454911e80d65c1ab7c64e79f997f0dda /release
parent019817d95c9780eba2d6e24d1e882598fe9ef8ba (diff)
sorry about this, 3rd commit to fix this small error.
Diffstat (limited to 'release')
-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):