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:
-rw-r--r--io_mesh_stl/stl_utils.py6
-rw-r--r--io_scene_3ds/export_3ds.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/io_mesh_stl/stl_utils.py b/io_mesh_stl/stl_utils.py
index e320774d..282409ab 100644
--- a/io_mesh_stl/stl_utils.py
+++ b/io_mesh_stl/stl_utils.py
@@ -49,9 +49,9 @@ def mmap_file(filename):
with open(filename, 'rb') as file:
# check http://bugs.python.org/issue8046 to have mmap context
# manager fixed in python
- map = mmap.mmap(file.fileno(), 0, access=mmap.ACCESS_READ)
- yield map
- map.close()
+ mem_map = mmap.mmap(file.fileno(), 0, access=mmap.ACCESS_READ)
+ yield mem_map
+ mem_map.close()
class ListDict(dict):
diff --git a/io_scene_3ds/export_3ds.py b/io_scene_3ds/export_3ds.py
index fc8d7117..714d419a 100644
--- a/io_scene_3ds/export_3ds.py
+++ b/io_scene_3ds/export_3ds.py
@@ -446,7 +446,7 @@ def make_material_texture_chunk(id, images):
"""
mat_sub = _3ds_chunk(id)
- def add_image(img):
+ def add_image(image):
import bpy
filename = bpy.path.basename(image.filepath)
mat_sub_file = _3ds_chunk(MATMAPFILE)