Skip to content

Commit

Permalink
applied modified patch (fix ros#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Nov 5, 2012
1 parent 8c59462 commit 8d57298
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/roslaunch/src/roslaunch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@
import sys
import traceback

# monkey-patch to suppress threading error message in Python 2.7.3
# see http://stackoverflow.com/questions/13193278/understand-python-threading-bug
if sys.version_info[:3] == (2, 7, 3):
import threading
threading._DummyThread._Thread__stop = lambda _dummy: None

import rospkg

from . import core as roslaunch_core
Expand Down

0 comments on commit 8d57298

Please sign in to comment.