Explorar el Código

코드 스타일 통일 + 기타

2DU hace 8 años
padre
commit
e47cd6c89c
Se han modificado 1 ficheros con 6 adiciones y 2 borrados
  1. 6 2
      app.py

+ 6 - 2
app.py

@@ -103,10 +103,14 @@ try:
 except:
     pass
 
-# Image directory create
-if not os.path.exists('image'):
+# 이미지 폴더 생성
+if(not os.path.exists('image')):
     os.makedirs('image')
     
+# 스킨 폴더 생성
+if(not os.path.exists('views')):
+    os.makedirs('views')
+    
 @route('/setup', method=['GET', 'POST'])
 def setup():
     try: