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>2010-09-03 19:58:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-03 19:58:47 +0400
commit8cf2a0c8929c16ccffda9fc76323a83edbc0457d (patch)
tree592b81de50801253055cc0454f85689b98b78816
parent4faf39673a6ecbfcee13ff73ff41434b35285a76 (diff)
patch [#23647] fix for bf-extensions/trunk/py/scripts/addons
from Filiciss Muhgue (filiciss)
-rw-r--r--add_mesh_pipe_joint.py2
-rw-r--r--io_mesh_raw/import_raw.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/add_mesh_pipe_joint.py b/add_mesh_pipe_joint.py
index 057ad11a..b43d6564 100644
--- a/add_mesh_pipe_joint.py
+++ b/add_mesh_pipe_joint.py
@@ -172,7 +172,7 @@ def create_mesh_object(context, verts, edges, faces, name, edit, align_matrix):
# Use the active obj and select it.
ob_new = obj_act
- ob_new.selected = True
+ ob_new.select = True
if obj_act.mode == 'OBJECT':
# Get existing mesh datablock.
diff --git a/io_mesh_raw/import_raw.py b/io_mesh_raw/import_raw.py
index 81077e34..d6b70e0b 100644
--- a/io_mesh_raw/import_raw.py
+++ b/io_mesh_raw/import_raw.py
@@ -43,7 +43,7 @@ tolerance.
import bpy
# move those to a utility modul
-from import_scene_obj import unpack_face_list, unpack_list # TODO, make generic
+from io_utils import unpack_face_list, unpack_list # TODO, make generic
def readMesh(filename, objName):