Fix indentation error.

This commit is contained in:
Stephan Erb 2008-12-31 14:04:42 +00:00
parent 8a76efb703
commit 28112d6681
2 changed files with 1 additions and 2 deletions

View File

@ -295,7 +295,6 @@ class SelectIdleQueue(IdleQueue):
self._check_time_events()
return True
try:
# Maybe there is still data in ssl buffer
waiting_descriptors = select.select(self.read_fds.keys(),
self.write_fds.keys(), self.error_fds.keys(), 0)

View File

@ -3108,7 +3108,7 @@ class Interface:
gajim.log.setLevel(None)
# GObjectIdleQueue is currently broken with ssl. Use good old select
gajim.idlequeue = idlequeue.SelectIdleQueue()
gajim.idlequeue = idlequeue.SelectIdleQueue()
# resolve and keep current record of resolved hosts
gajim.resolver = resolver.get_resolver(gajim.idlequeue)