From ee54e2fff482beeef3fb6fde2efa085a89b635b2 Mon Sep 17 00:00:00 2001 From: Jfriedli Date: Sun, 21 Mar 2021 17:26:05 +0100 Subject: [PATCH] fixed a typo --- matweb/frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matweb/frontend.py b/matweb/frontend.py index 7a3037d..d29a2fb 100644 --- a/matweb/frontend.py +++ b/matweb/frontend.py @@ -87,7 +87,7 @@ def upload_file(): meta_after=meta_after, ) except (RuntimeError, ValueError): - flash('The type %s could no be cleaned' % mime) + flash('The type %s could not be cleaned' % mime) max_file_size = int(current_app.config['MAX_CONTENT_LENGTH'] / 1024 / 1024) return render_template('index.html', max_file_size=max_file_size, mimetypes=mime_types) \ No newline at end of file