bugfix
This commit is contained in:
parent
2fb90a3064
commit
eb105a7efa
@ -95,7 +95,7 @@ class TopicSubscriber:
|
|||||||
self.sub = self.context.socket(zmq.SUB)
|
self.sub = self.context.socket(zmq.SUB)
|
||||||
self.sub.connect(self.url)
|
self.sub.connect(self.url)
|
||||||
# subscribe to topic 'en' or 'jp'
|
# subscribe to topic 'en' or 'jp'
|
||||||
if isinstance(self.topic, []):
|
if isinstance(self.topic, list):
|
||||||
for t in self.topic:
|
for t in self.topic:
|
||||||
self.sub.setsockopt(zmq.SUBSCRIBE, t.encode('utf-8'))
|
self.sub.setsockopt(zmq.SUBSCRIBE, t.encode('utf-8'))
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user