blumonilr 5 anni fa
parent
commit
7eece6d91f
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  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