fixed production xmldir

master
Malar Kannan 2017-08-01 17:25:22 +05:30
parent 76c6c14f6a
commit f49df77601
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
"curly": true,
"eofline": false,
"forin": true,
"type-check": true,
"indent": [true, "spaces"],
"interface-name": [true, "never-prefix"],
"jsdoc-format": true,

View File

@ -7,7 +7,7 @@ import glob
import os
production = False if os.environ.get('NODE_ENV','') == 'development' else True
xmlDir = 'public/' if production else 'build/'
xmlDir = 'build/' if production else 'public/'
@app.route('/')
def walle_index():