Subject: util: Fix name validation error message From: Cole Robinson crobinso@redhat.com Thu Sep 1 13:12:44 2011 -0400 Date: Thu Sep 1 13:12:44 2011 -0400: Git: 72de7f4fba5e3536a0b68a23473ca9c81869882f Index: virtinst-0.600.0/virtinst/_util.py =================================================================== --- virtinst-0.600.0.orig/virtinst/_util.py +++ virtinst-0.600.0/virtinst/_util.py @@ -152,7 +152,7 @@ def validate_uuid(val): def validate_name(name_type, val, lencheck=False): if type(val) is not str or len(val) == 0: - raise ValueError(_("%s name must be a string")) + raise ValueError(_("%s name must be a string") % name_type) if lencheck: if len(val) > 50: