|
@@ -31,7 +31,10 @@ def main():
|
|
|
outFilePath = appath + outputFolder + outFileName
|
|
|
inFile = fileFromRequest.read()
|
|
|
|
|
|
- parsefromfile(confFilePath, formFields, inFile, outFilePath)
|
|
|
+ try:
|
|
|
+ parsefromfile(confFilePath, formFields, inFile, outFilePath)
|
|
|
+ except:
|
|
|
+ return redirect(url_for('error'))
|
|
|
|
|
|
else:
|
|
|
|