From f55ab00bf5e29166c442ef7d0c233bc5fab5f1fd Mon Sep 17 00:00:00 2001 From: Gochim Date: Tue, 10 Dec 2019 08:18:01 +0200 Subject: [PATCH] Fixed error message text in EntityEditor --- gui/setEditor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/setEditor.py b/gui/setEditor.py index 578cf18fd..55c87f315 100644 --- a/gui/setEditor.py +++ b/gui/setEditor.py @@ -47,7 +47,7 @@ class ImplantTextValidor(BaseValidator): if len(text) == 0: raise ValueError("You must supply a name for the Implant Set!") elif text in [x.name for x in entityEditor.choices]: - raise ValueError("Imlplant Set name already in use, please choose another.") + raise ValueError("Implant Set name already in use, please choose another.") return True except ValueError as e: