diff options
author | Nathan West <nathan.west@okstate.edu> | 2013-07-26 09:52:28 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2013-07-26 09:52:28 -0400 |
commit | 370d1a34dc70db7fd150d55f1a59f26d6db23fa4 (patch) | |
tree | 520a94fb185692c0cd8e3d97cd8b38e65fd90788 /gnuradio-runtime/examples/mp-sched/synthetic.py | |
parent | 5432c985f911f4715456846425dbf84121842de8 (diff) |
examples: Some of the examples were updated to use 3.7 API, but the new module namespaces were never imported.
Diffstat (limited to 'gnuradio-runtime/examples/mp-sched/synthetic.py')
-rwxr-xr-x | gnuradio-runtime/examples/mp-sched/synthetic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/examples/mp-sched/synthetic.py b/gnuradio-runtime/examples/mp-sched/synthetic.py index 6f0bb85da8..d815879cff 100755 --- a/gnuradio-runtime/examples/mp-sched/synthetic.py +++ b/gnuradio-runtime/examples/mp-sched/synthetic.py @@ -19,8 +19,8 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -from gnuradio import gr, gru, eng_notation, blks2 -from gnuradio import blocks +from gnuradio import gr, eng_notation +from gnuradio import blocks, filter from gnuradio.eng_option import eng_option from optparse import OptionParser import os |