From 8cf2a0c8929c16ccffda9fc76323a83edbc0457d Mon Sep 17 00:00:00 2001
From: Campbell Barton <ideasman42@gmail.com>
Date: Fri, 3 Sep 2010 15:58:47 +0000
Subject: [PATCH] patch [#23647] fix for bf-extensions/trunk/py/scripts/addons
 from Filiciss Muhgue (filiciss)

---
 add_mesh_pipe_joint.py    | 2 +-
 io_mesh_raw/import_raw.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/add_mesh_pipe_joint.py b/add_mesh_pipe_joint.py
index 057ad11a3..b43d65642 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 81077e34b..d6b70e0b0 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):
-- 
GitLab