ia64/xen-unstable
changeset 12804:39509c8f5c09
Fix error message.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
Signed-off-by: Ewan Mellor <ewan@xensource.com>
author | Ewan Mellor <ewan@xensource.com> |
---|---|
date | Tue Dec 05 15:47:43 2006 +0000 (2006-12-05) |
parents | a467eb0c5596 |
children | fb1291ffa26f |
files | tools/python/xen/xend/XendDomain.py |
line diff
1.1 --- a/tools/python/xen/xend/XendDomain.py Wed Dec 06 10:05:41 2006 +0000 1.2 +++ b/tools/python/xen/xend/XendDomain.py Tue Dec 05 15:47:43 2006 +0000 1.3 @@ -808,7 +808,7 @@ class XendDomain: 1.4 raise XendError("Cannot save privileged domain %s" % domname) 1.5 1.6 if dominfo.state != DOM_STATE_HALTED: 1.7 - raise XendError("Cannot suspend domain that is not running.") 1.8 + raise XendError("Cannot resume domain that is not halted.") 1.9 1.10 dom_uuid = dominfo.get_uuid() 1.11 chkpath = self._managed_check_point_path(dom_uuid)