From 405747fe365f66e637f2b9ff31eb805dfb5379fa Mon Sep 17 00:00:00 2001 From: Matt Fox Date: Mon, 27 Jun 2016 21:18:34 -0700 Subject: [PATCH] Fix run() documentation omission. --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 9c7123d..604e9c6 100644 --- a/README.rst +++ b/README.rst @@ -104,7 +104,8 @@ a call to ``bind``, then start receiving packets with a call to ``run``. ``QueueHandler.run([block])`` Send packets to your callback. By default, this method blocks. Set - block=False to let your thread continue. You can get the + block=False to let your thread continue. You can get the file descriptor + of the socket with the ``get_fd`` method. Packet objects --------------