Fixed a typo

This commit is contained in:
Manuel Eduardo Cortéz Vallejo 2016-10-08 11:46:25 -05:00
parent 30c0a8249e
commit 0f2bd2a9e1

View File

@ -26,7 +26,7 @@ def stream_threaded(func, *args, **kwargs):
def new_func(*a, **k):
try:
func(**k)
except exception as msg:
except Exception as msg:
log.error("Error in stream with args: %r" % (a,))
log.error(msg.message)
pub.sendMessage("stream-error", session=a[0])