The error message that pops up when the user tries to enter an invalid
guest name doesn't correctly list valid name characters (it was missing
the '-').
Thanks,
Cole
--
Cole Robinson
crobinso@xxxxxxxxxx
diff -r 27ad8c7fbc3e src/virtManager/create.py
--- a/src/virtManager/create.py Thu May 24 16:49:13 2007 -0400
+++ b/src/virtManager/create.py Wed Jun 13 16:09:34 2007 -0400
@@ -794,7 +794,7 @@ class vmmCreate(gobject.GObject):
return False
if re.match("^[a-zA-Z0-9_-]*$", name) == None:
self._validation_error_box(_("Invalid System Name"), \
- _("System name may contain alphanumeric and '_' characters only"))
+ _("System name may contain alphanumeric, '_' and '-' characters only"))
return False