Skip to content

Commit

Permalink
Whoah, syntax. I'm not sure why I committed that.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dusty Phillips committed Jan 27, 2010
1 parent abe25dc commit 8cefa87
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions psyclone/ioloop.py
Expand Up @@ -392,11 +392,8 @@ def poll(self, timeout):
_poll = select.epoll
except AttributeError:
try:
kqueue = select.kqueue
kqueue = select.KQueue
except AttributeError:
import sys
if "linux" in sys.platform:
logging.warning("epoll module not found; using select()")
_poll = _Select
else
else:
_poll = _KQueue

0 comments on commit 8cefa87

Please sign in to comment.