Skip to content

Commit 09ecbbe

Browse files
authored
Merge pull request #121 from tangb/patch-1
Fix constructor issue
2 parents 75693c4 + ec8d9ed commit 09ecbbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyre/zsocket.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
class ZSocket(zmq.Socket):
2020

2121
def __init__(self, *args, **kwargs):
22-
super(zmq.Socket, self).__init__(*args, **kwargs)
22+
super(ZSocket, self).__init__(*args, **kwargs)
2323

2424
# --------------------------------------------------------------------------
2525
# Send a signal over a socket. A signal is a zero-byte message.

0 commit comments

Comments
 (0)