1 Commits
Author SHA1 Message Date
SugoiDogo a8100dd71c use Popen(shell=true) 2022-12-05 07:49:39 -07:00
+1 -1
View File
@@ -76,7 +76,7 @@ def main():
command=command.replace('$USER_INPUT',response['data'][0]['user_input'])
print(command)
from os.path import dirname
subprocess.Popen(command,cwd=dirname(command))
subprocess.Popen(command,cwd=dirname(command),shell=True)
except KeyError:
pass
except: