Updating some translation strings

This commit is contained in:
2015-05-02 17:22:28 -05:00
parent e7943cba50
commit c50c42b895
6 changed files with 18 additions and 10 deletions

View File

@@ -24,10 +24,10 @@ def call_threaded(func, *args, **kwargs):
def stream_threaded(func, *args, **kwargs):
def new_func(*a, **k):
try:
func(**k)
except:
pub.sendMessage("streamError", session=a[0])
# try:
func(**k)
# except:
# pub.sendMessage("streamError", session=a[0])
thread = threading.Thread(target=new_func, args=args, kwargs=kwargs)
thread.daemon = True
thread.start()