blumonilr 5 лет назад
Родитель
Сommit
7eece6d91f
1 измененных файлов с 1 добавлено и 0 удалено
  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