summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/examples/network/vector_sink.py
diff options
context:
space:
mode:
authorNathan West <nathan.west@okstate.edu>2013-07-26 09:52:28 -0400
committerTom Rondeau <tom@trondeau.com>2013-07-26 09:52:28 -0400
commit370d1a34dc70db7fd150d55f1a59f26d6db23fa4 (patch)
tree520a94fb185692c0cd8e3d97cd8b38e65fd90788 /gnuradio-runtime/examples/network/vector_sink.py
parent5432c985f911f4715456846425dbf84121842de8 (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/network/vector_sink.py')
-rwxr-xr-xgnuradio-runtime/examples/network/vector_sink.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/examples/network/vector_sink.py b/gnuradio-runtime/examples/network/vector_sink.py
index c0397d1e43..c756f36f42 100755
--- a/gnuradio-runtime/examples/network/vector_sink.py
+++ b/gnuradio-runtime/examples/network/vector_sink.py
@@ -26,7 +26,7 @@ from gnuradio.eng_option import eng_option
from optparse import OptionParser
class vector_sink(gr.top_block):
- def __init__(self, host, port, pkt_size, eof, wait):
+ def __init__(self, host, port, pkt_size, eof):
gr.top_block.__init__(self, "vector_sink")
udp = blocks.udp_source(gr.sizeof_float, host, port, pkt_size, eof=eof)