diff options
author | Brian Beggs <macdiesel@gmail.com> | 2010-06-03 09:54:48 -0400 |
---|---|---|
committer | Brian Beggs <macdiesel@gmail.com> | 2010-06-03 09:54:48 -0400 |
commit | 71d72f431fe4008c0075a458d7ef37ab41992617 (patch) | |
tree | 2c6a8519d43d2a1f482e14d7c5a4df55a8e75fd0 /sleekxmpp/xmlstream/scheduler.py | |
parent | db4989c66dcc717db138bbbf914b43d02236b849 (diff) | |
parent | da6e1e47dc81f5f9579201644d7c18dd85510368 (diff) | |
download | slixmpp-71d72f431fe4008c0075a458d7ef37ab41992617.tar.gz slixmpp-71d72f431fe4008c0075a458d7ef37ab41992617.tar.bz2 slixmpp-71d72f431fe4008c0075a458d7ef37ab41992617.tar.xz slixmpp-71d72f431fe4008c0075a458d7ef37ab41992617.zip |
Merge remote branch 'tom/hacks'
Diffstat (limited to 'sleekxmpp/xmlstream/scheduler.py')
-rw-r--r-- | sleekxmpp/xmlstream/scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/scheduler.py b/sleekxmpp/xmlstream/scheduler.py index 945d9fad..40aaf695 100644 --- a/sleekxmpp/xmlstream/scheduler.py +++ b/sleekxmpp/xmlstream/scheduler.py @@ -76,7 +76,7 @@ class Scheduler(object): if updated: self.schedule = sorted(self.schedule, key=lambda task: task.next) except KeyboardInterrupt: self.run = False - logging.debug("Qutting Scheduler thread") + logging.debug("Quitting Scheduler thread") if self.parentqueue is not None: self.parentqueue.put(('quit', None, None)) |