fixed issue with thread call
authorft
Mon, 10 Nov 2014 13:58:51 +0100
changeset 297d020a57d820
parent 28 07be57baf1f9
child 30 baf07481db41
fixed issue with thread call
src/passwordreceiver.py
     1.1 --- a/src/passwordreceiver.py	Mon Nov 10 11:37:35 2014 +0100
     1.2 +++ b/src/passwordreceiver.py	Mon Nov 10 13:58:51 2014 +0100
     1.3 @@ -189,7 +189,7 @@
     1.4          else:
     1.5              command = [settings["script"], settings["device"], settings["mountpoint"], args["password"]]
     1.6          
     1.7 -        thread.start_new_thread(initStick, (command,))
     1.8 +        thread.start_new_thread(self.initStick, (command,))
     1.9          
    1.10          return "Success: Init started"
    1.11