Skip to content
This repository has been archived by the owner on Nov 13, 2017. It is now read-only.

Commit

Permalink
Merge pull request #45 from v4hn/pyassimp-3.2
Browse files Browse the repository at this point in the history
support pyassimp 3.2
  • Loading branch information
davetcoleman committed Apr 25, 2016
2 parents 370ca95 + f7ef309 commit c909aee
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/moveit_commander/planning_scene_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,12 @@
from geometry_msgs.msg import PoseStamped, Point
from shape_msgs.msg import SolidPrimitive, Plane, Mesh, MeshTriangle
from exception import MoveItCommanderException
from pyassimp import pyassimp

try:
from pyassimp import pyassimp
except:
# support pyassimp > 3.0
import pyassimp

# This is going to have more functionality; (feel free to add some!)
# This class will include simple Python code for publishing messages for a planning scene
Expand Down

0 comments on commit c909aee

Please sign in to comment.