diff options
author | Johannes Schmitz <schmitz@ti.rwth-aachen.de> | 2015-08-06 10:41:07 +0200 |
---|---|---|
committer | Johannes Schmitz <schmitz@ti.rwth-aachen.de> | 2015-08-06 10:41:07 +0200 |
commit | 8cf04fb429485d475acb6db4462e46d5dc218adf (patch) | |
tree | 2db7601d42ec14d34180f7fdbffc1002fcd74f85 /gr-zeromq/examples/python/client.py | |
parent | 22e2f1aed8afdfccce3884cf6bf3140c2b8e3f53 (diff) |
gr-zeromq: fix python examples3.7.9git
Diffstat (limited to 'gr-zeromq/examples/python/client.py')
-rwxr-xr-x | gr-zeromq/examples/python/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-zeromq/examples/python/client.py b/gr-zeromq/examples/python/client.py index 7663f9a056..a63a77aa0d 100755 --- a/gr-zeromq/examples/python/client.py +++ b/gr-zeromq/examples/python/client.py @@ -53,8 +53,8 @@ class top_block(gr.top_block): #self.zmq_source = zeromq.req_source(gr.sizeof_float, 1, source_adr) #self.zmq_source = zeromq.pull_source(gr.sizeof_float, 1, source_adr) self.zmq_source = zeromq.sub_source(gr.sizeof_float, 1, source_adr) - #self.zmq_probe = zeromq.push_sink(gr.sizeof_float,probe_adr) - self.zmq_probe = zeromq.pub_sink(gr.sizeof_float,probe_adr) + #self.zmq_probe = zeromq.push_sink(gr.sizeof_float, 1, probe_adr) + self.zmq_probe = zeromq.pub_sink(gr.sizeof_float, 1, probe_adr) # connects self.connect(self.zmq_source, self.zmq_probe) |