Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 7a7f33d

Browse files
committed
Small correction to cpuset validation message
1 parent 8900b49 commit 7a7f33d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

virtinst/DomainNumatune.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def validate_cpuset(conn, val):
3737
if type(val) is not type("string") or len(val) == 0:
3838
raise ValueError(_("cpuset must be string"))
3939
if re.match("^[0-9,-^]*$", val) is None:
40-
raise ValueError(_("cpuset can only contain numeric, ',', or "
40+
raise ValueError(_("cpuset can only contain numeric, ',', '^', or "
4141
"'-' characters"))
4242

4343
pcpus = _util.get_phy_cpus(conn)

0 commit comments

Comments
 (0)