summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/python/gnuradio/gru/msgq_runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/gru/msgq_runner.py')
-rw-r--r--gnuradio-runtime/python/gnuradio/gru/msgq_runner.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnuradio-runtime/python/gnuradio/gru/msgq_runner.py b/gnuradio-runtime/python/gnuradio/gru/msgq_runner.py
index 2d58480f5f..4bcc06c60a 100644
--- a/gnuradio-runtime/python/gnuradio/gru/msgq_runner.py
+++ b/gnuradio-runtime/python/gnuradio/gru/msgq_runner.py
@@ -43,12 +43,12 @@ To determine if the runner has exited, call exited() on the object.
from __future__ import unicode_literals
from gnuradio import gr
-import gnuradio.gr.gr_threading as _threading
+import threading
-class msgq_runner(_threading.Thread):
+class msgq_runner(threading.Thread):
def __init__(self, msgq, callback, exit_on_error=False):
- _threading.Thread.__init__(self)
+ threading.Thread.__init__(self)
self._msgq = msgq
self._callback = callback