From dcc7cd135158a8a9d9ac3d1998dcf13ccbd44b59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Fri, 9 Apr 2021 14:34:20 +0200 Subject: [PATCH] fix: Typos --- website/web/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/web/__init__.py b/website/web/__init__.py index 4468b54..247148c 100644 --- a/website/web/__init__.py +++ b/website/web/__init__.py @@ -472,9 +472,9 @@ def tree(tree_uuid: str, node_uuid: Optional[str]=None): flash(f'Unable to find this UUID ({tree_uuid}).', 'error') return redirect(url_for('index')) elif status == CaptureStatus.QUEUED: - message = "The capture it queued, but didn't start yet." + message = "The capture is queued, but didn't start yet." elif status == CaptureStatus.ONGOING: - message = "The capture it ongoing." + message = "The capture is ongoing." return render_template('tree_wait.html', message=message, tree_uuid=tree_uuid) if not cache: