Merge pull request #1081 from dod-ccpo/vscode-debugging

coerce unipath objects to strings in app.py
This commit is contained in:
graham-dds 2019-09-19 13:49:25 -04:00 committed by GitHub
commit d6742e5169
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,8 +49,8 @@ def make_app(config):
app = Flask(
__name__,
template_folder=parent_dir.child("templates").absolute(),
static_folder=parent_dir.child("static").absolute(),
template_folder=str(object=parent_dir.child("templates").absolute()),
static_folder=str(object=parent_dir.child("static").absolute()),
)
app.json_encoder = CustomJSONEncoder
make_redis(app, config)