Fixed case-sensitivity on subprocess.call()

This commit is contained in:
xYantix
2019-04-30 18:17:26 +08:00
committed by GitHub
parent d2a92bef0f
commit b12a7770e8

View File

@@ -21,7 +21,7 @@ class Worker(object):
@staticmethod
def run_task(task):
subprocess.call(task, shell=true)
subprocess.call(task, shell=True)
class Pool(object):