Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion smach_viewer/src/smach_viewer/xdot/wxxdot.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

import sys

try:
# intentionally use from xdot, instead of from .xdot, because we want to use local xdot for Python2 and system xdot for Python3
from xdot.ui.elements import *
from xdot.ui.animation import *
from xdot.dot.lexer import *
from xdot.dot.parser import *
from xdot.dot.parser import XDotParser
import subprocess
except:
from xdot import *
Expand Down
Loading