diff options
Diffstat (limited to 'gnuradio-examples/python/digital/benchmark_loopback.py')
-rwxr-xr-x | gnuradio-examples/python/digital/benchmark_loopback.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-examples/python/digital/benchmark_loopback.py b/gnuradio-examples/python/digital/benchmark_loopback.py index e62c12eac7..4cc4a7bee3 100755 --- a/gnuradio-examples/python/digital/benchmark_loopback.py +++ b/gnuradio-examples/python/digital/benchmark_loopback.py @@ -28,8 +28,8 @@ from optparse import OptionParser import random, time, struct, sys, math # from current dir -from transmit_path_lb import transmit_path -from receive_path_lb import receive_path +from transmit_path import transmit_path +from receive_path import receive_path class my_top_block(gr.top_block): def __init__(self, mod_class, demod_class, rx_callback, options): |