Tools: update param_parse.py

seperator -> separator
This commit is contained in:
Ikko Eltociear Ashimine 2024-09-12 10:53:28 +09:00 committed by Peter Barker
parent cd4501e62d
commit 78f0e78977
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ def clean_param(param):
for i in valueList:
(start, sep, end) = i.partition(":")
if sep != ":":
raise ValueError("Expected a colon seperator in (%s)" % (i,))
raise ValueError("Expected a colon separator in (%s)" % (i,))
if len(end) == 0:
raise ValueError("Expected a colon-separated string, got (%s)" % i)
end = end.strip()