summaryrefslogtreecommitdiff
path: root/gnuradio-core/src
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-02-07 18:03:10 -0500
committerTom Rondeau <trondeau@vt.edu>2013-02-07 18:03:10 -0500
commitc15a2c6f4f720265a7ed89c51224c9184a8ae512 (patch)
tree5f5b3fdbe9e7d3f60037455689093e55e5bee42d /gnuradio-core/src
parentdc705ffa5c6307746ce2b547d122848e6149644c (diff)
core: make same import statement as in master; keep next's pmt naming scheme.
Diffstat (limited to 'gnuradio-core/src')
-rwxr-xr-xgnuradio-core/src/python/gnuradio/gr/qa_tag_utils.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnuradio-core/src/python/gnuradio/gr/qa_tag_utils.py b/gnuradio-core/src/python/gnuradio/gr/qa_tag_utils.py
index d0c2f2f221..de1b5aa002 100755
--- a/gnuradio-core/src/python/gnuradio/gr/qa_tag_utils.py
+++ b/gnuradio-core/src/python/gnuradio/gr/qa_tag_utils.py
@@ -22,7 +22,11 @@
from gnuradio import gr, gr_unittest
import tag_utils
-import pmt
+
+try:
+ import pmt_swig as pmt
+except ImportError:
+ import pmt
class test_tag_utils (gr_unittest.TestCase):