minor bug fixes

This commit is contained in:
Volkan Şahin 2016-04-08 18:43:06 +03:00
parent 85395033d4
commit f80d785301

View file

@ -24,7 +24,7 @@ class Context(object):
self.data = {}
def execute(self, command):
return subprocess.call(command, shell=True)
return subprocess.Popen(command, shell=True)
class Plugin(threading.Thread):