Fixed line lengths and trailing whitespace.

The pep8 command is now pleased.
This commit is contained in:
Lance Stout 2010-09-30 13:06:16 -04:00
parent 7c10ff16fb
commit 6de87a1cbf

View file

@ -265,8 +265,8 @@ class XMLStream(object):
"""
Reset the stream's state and reconnect to the server.
"""
self.state.set('tls',False)
self.state.set('ssl',False)
self.state.set('tls', False)
self.state.set('ssl', False)
time.sleep(1)
self.connect()
@ -420,9 +420,9 @@ class XMLStream(object):
Arguments:
threaded -- If threaded=True then event dispatcher will run
in a separate thread, allowing for the stream to be used
in the background for another application. Defaults
to True.
in a separate thread, allowing for the stream to be
used in the background for another application.
Defaults to True.
Event handlers and the send queue will be threaded
regardless of this parameter's value.
@ -608,7 +608,8 @@ class XMLStream(object):
try:
handler.run(args[0])
except Exception as e:
logging.exception('Error processing event handler: %s' % handler.name)
error_msg = 'Error processing event handler: %s'
logging.exception(error_msg % handler.name)
args[0].exception(e)
elif etype == 'schedule':
try: