diff options
author | Michael Still <mikal@stillhq.com> | 2012-06-07 11:16:23 +1000 |
---|---|---|
committer | Michael Still <mikal@stillhq.com> | 2012-06-07 15:26:03 +1000 |
commit | fe5706cb973e1cddecdeed9580fc9d9bbdc848fd (patch) | |
tree | 688ad9fa7cb5817fc5b66385a408eb54dfcc91f6 /nova/exception.py | |
parent | 7b7febb02b37420c759eab59b07c7e3e2de9bab1 (diff) | |
download | nova-fe5706cb973e1cddecdeed9580fc9d9bbdc848fd.tar.gz nova-fe5706cb973e1cddecdeed9580fc9d9bbdc848fd.tar.xz nova-fe5706cb973e1cddecdeed9580fc9d9bbdc848fd.zip |
Convert consoles to use instance uuid.
Continued work on blueprint finish-uuid-conversion.
Change-Id: I4032419d66e9bbb17b770d8974a92a136bf9c5d2
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/exception.py b/nova/exception.py index bf9318fd2..5904a0014 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -774,11 +774,11 @@ class ConsoleNotFound(NotFound): class ConsoleNotFoundForInstance(ConsoleNotFound): - message = _("Console for instance %(instance_id)s could not be found.") + message = _("Console for instance %(instance_uuid)s could not be found.") class ConsoleNotFoundInPoolForInstance(ConsoleNotFound): - message = _("Console for instance %(instance_id)s " + message = _("Console for instance %(instance_uuid)s " "in pool %(pool_id)s could not be found.") |