diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-07 18:03:10 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-07 18:03:10 -0500 |
commit | c15a2c6f4f720265a7ed89c51224c9184a8ae512 (patch) | |
tree | 5f5b3fdbe9e7d3f60037455689093e55e5bee42d /gnuradio-core/src | |
parent | dc705ffa5c6307746ce2b547d122848e6149644c (diff) |
core: make same import statement as in master; keep next's pmt naming scheme.
Diffstat (limited to 'gnuradio-core/src')
-rwxr-xr-x | gnuradio-core/src/python/gnuradio/gr/qa_tag_utils.py | 6 |
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): |