Merge branch 'master' of github:Shizmob/pydle

This commit is contained in:
Shiz 2014-02-16 12:03:49 +01:00
commit 65fc70002e
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ class EventLoop:
def _periodic_handler(self, interval, callback, args, kwargs):
# Call callback, and schedule again if it doesn't return False.
handle = self._do_schedule_in(interval, callback, args, kwargs)
handle = self._do_schedule_periodically(interval, callback, args, kwargs)
result = False
try: