aboutsummaryrefslogtreecommitdiff
path: root/qc_app/parse.py
diff options
context:
space:
mode:
Diffstat (limited to 'qc_app/parse.py')
-rw-r--r--qc_app/parse.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/qc_app/parse.py b/qc_app/parse.py
index f0c53d1..ba2e63e 100644
--- a/qc_app/parse.py
+++ b/qc_app/parse.py
@@ -30,7 +30,7 @@ def parse():
filename = request.args.get("filename")
filetype = request.args.get("filetype")
if speciesid is None:
- flash("No species selected", "alert-error")
+ flash("No species selected", "alert-error alert-expr-data-error")
errors = True
else:
try:
@@ -38,29 +38,30 @@ def parse():
species = with_db_connection(
lambda con: species_by_id(con, speciesid))
if not bool(species):
- flash("No such species.", "alert-error")
+ flash("No such species.", "alert-error alert-expr-data-error")
errors = True
except ValueError:
flash("Invalid speciesid provided. Expected an integer.",
- "alert-error")
+ "alert-error alert-expr-data-error")
errors = True
if filename is None:
- flash("No file provided", "alert-error")
+ flash("No file provided", "alert-error alert-expr-data-error")
errors = True
if filetype is None:
- flash("No filetype provided", "alert-error")
+ flash("No filetype provided", "alert-error alert-expr-data-error")
errors = True
if filetype not in ("average", "standard-error"):
- flash("Invalid filetype provided", "alert-error")
+ flash("Invalid filetype provided", "alert-error alert-expr-data-error")
errors = True
if filename:
filepath = os.path.join(app.config["UPLOAD_FOLDER"], filename)
if not os.path.exists(filepath):
- flash("Selected file does not exist (any longer)", "alert-error")
+ flash("Selected file does not exist (any longer)",
+ "alert-error alert-expr-data-error")
errors = True
if errors: