From: Fred Isaman <iisaman@xxxxxxxxxx> Signed-off-by: Fred Isaman <iisaman@xxxxxxxxxx> --- rpc/rpc.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/rpc/rpc.py b/rpc/rpc.py index 38efcd8..3166632 100644 --- a/rpc/rpc.py +++ b/rpc/rpc.py @@ -514,7 +514,7 @@ class ConnectionHandler(object): data = self.sockets[fd].recv_records(self.rsize) except socket.error: data = None - if data: + if data is not None: self._event_read(data, fd) else: self._event_close(fd) -- 1.7.7.6 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html