diff options
author | Frederick Muriuki Muriithi | 2022-05-20 10:28:22 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-05-20 10:28:22 +0300 |
commit | 53a1f36b4e910ea9706d427530b5fa6acfe917cc (patch) | |
tree | 4f92911a7a0d0bb3b727598c8ce2226630977d56 /qc_app/entry.py | |
parent | 8462d4842dc2bbb69b1b8321d37ebd6d132b1298 (diff) | |
download | gn-uploader-53a1f36b4e910ea9706d427530b5fa6acfe917cc.tar.gz |
Use standard-error rather than standard_error for consistency
The CLI scripts use "standard-error" so update the web version to fit
in with that.
Diffstat (limited to 'qc_app/entry.py')
-rw-r--r-- | qc_app/entry.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qc_app/entry.py b/qc_app/entry.py index f91e59d..b7b4b6f 100644 --- a/qc_app/entry.py +++ b/qc_app/entry.py @@ -20,7 +20,7 @@ def upload_file(): return render_template("index.html") errors = False - if request.form["filetype"] not in ("average", "standard_error"): + if request.form["filetype"] not in ("average", "standard-error"): flash("Invalid file type provided.", "alert-error") errors = True |