Stephane
the right way if you want to use a thread is thread = threading.Thread(target=CALLABLE, args=ARGS)
and not
thread = threading.Thread(target=CALLABLE(ARGS))