Skip to content

Commit

Permalink
Tools: update param_parse.py
Browse files Browse the repository at this point in the history
seperator -> separator
  • Loading branch information
eltociear authored and peterbarker committed Sep 12, 2024
1 parent cd4501e commit 78f0e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/autotest/param_metadata/param_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 78f0e78

Please sign in to comment.