blumonilr hace 5 años
padre
commit
7eece6d91f
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      web/app.py

+ 1 - 0
web/app.py

@@ -63,6 +63,7 @@ def save_code(language, code):
         src_file = open('Main.java', 'w')
     elif language == 'python':
         src_file = open('main.py', 'w')
+    print(src_file)
     src_file.write(code)
     return src_file