Skip to content

Commit

Permalink
Merge pull request #22 from balaji303/v3.1
Browse files Browse the repository at this point in the history
issue 13
  • Loading branch information
balaji303 authored Sep 25, 2021
2 parents 0208f77 + 1d363fd commit 94d4966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/CDE.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def compile_fun(self,e):
with open( "program.py","w" ) as cppfile:
cppfile.write(code)
cppfile.close()
os.system("python program.py")
subprocess.call('python program.py', shell=False)
else:
print("Error")
return
Expand Down

0 comments on commit 94d4966

Please sign in to comment.