fix content folder error
parent
632652914c
commit
9f24dc58a0
2
app.py
2
app.py
|
|
@ -17,7 +17,7 @@ from datetime import datetime
|
|||
app = Flask(__name__)
|
||||
|
||||
# Configuration
|
||||
CONTENT_DIR = '../content'
|
||||
CONTENT_DIR = 'content'
|
||||
STATIC_DIR = 'static'
|
||||
TEMPLATES_DIR = 'templates'
|
||||
TOKENS_FILE = 'tokens.csv'
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ import glob
|
|||
import uuid
|
||||
|
||||
# Configuration
|
||||
CONTENT_DIR = '../content'
|
||||
CONTENT_DIR = 'content'
|
||||
TOKENS_FILE = 'tokens.csv'
|
||||
|
||||
def get_lesson_names():
|
||||
|
|
|
|||
Loading…
Reference in New Issue