diff options
author | Joe Gordon <joe.gordon0@gmail.com> | 2013-05-26 14:15:53 +0300 |
---|---|---|
committer | Joe Gordon <joe.gordon0@gmail.com> | 2013-05-26 14:44:48 +0300 |
commit | f55b1b0078cc95f7001731fe14f198fad17fdfed (patch) | |
tree | 8380eaee0045879bca2eedaea02637073f416aaf /nova/exception.py | |
parent | e1528ee7fca4f7d77e3808090c10bd304c79fc57 (diff) | |
download | nova-f55b1b0078cc95f7001731fe14f198fad17fdfed.tar.gz nova-f55b1b0078cc95f7001731fe14f198fad17fdfed.tar.xz nova-f55b1b0078cc95f7001731fe14f198fad17fdfed.zip |
Add missing conversion specifier to ServiceGroupUnavailable
The message in the ServiceGroupUnavailable exception was missing the 's'
conversion specifier.
Fix bug 1183733
Change-Id: I54869431511a72c49ccf61f5e7b1a30607959423
Diffstat (limited to 'nova/exception.py')
-rw-r--r-- | nova/exception.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/exception.py b/nova/exception.py index 01469f828..87fcc2a2b 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -1167,7 +1167,7 @@ class InstanceRecreateNotSupported(Invalid): class ServiceGroupUnavailable(NovaException): - message = _("The service from servicegroup driver %(driver) is " + message = _("The service from servicegroup driver %(driver)s is " "temporarily unavailable.") |