From f55b1b0078cc95f7001731fe14f198fad17fdfed Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Sun, 26 May 2013 14:15:53 +0300 Subject: Add missing conversion specifier to ServiceGroupUnavailable The message in the ServiceGroupUnavailable exception was missing the 's' conversion specifier. Fix bug 1183733 Change-Id: I54869431511a72c49ccf61f5e7b1a30607959423 --- nova/exception.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/exception.py') 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.") -- cgit