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>2011-09-21 12:53:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-21 12:53:49 +0400
commite7917861175a3aed08ed00cd490df81f9a6fe56d (patch)
tree8074ce27e2b9a6d7684f73dfe250334671a41c02 /io_mesh_stl/stl_utils.py
parent766d02e54568ac663f5fc6dff0d3ec9cf388f461 (diff)
fix for image export on 3ds files, dont overwrite builtin 'map' for stl io
Diffstat (limited to 'io_mesh_stl/stl_utils.py')
-rw-r--r--io_mesh_stl/stl_utils.py6
1 files changed, 3 insertions, 3 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):