Skip to content

Commit dc5df88

Browse files
author
paskozdilar
committed
Fix typo
1 parent c3305a4 commit dc5df88

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

zrpc/server.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
method available to ZRPC clients.
66
"""
77

8+
89
import collections
910
import logging
1011
import os
@@ -116,7 +117,7 @@ def run_once(self, timeout=None):
116117
if ready_socket is socket:
117118
self.__handle_request(ready_socket)
118119
else:
119-
self._fd_callbacks[fd]()
120+
self._fd_callbacks[ready_socket]()
120121

121122
def __handle_request(self, socket):
122123
request_data = socket.recv()

0 commit comments

Comments
 (0)