From 180f29d7ecb94d50da03ecb0bfad108868dad5c7 Mon Sep 17 00:00:00 2001 From: Sulochan Acharya Date: Wed, 12 Dec 2012 09:37:00 -0600 Subject: Fixes string formatting error. Fixes a small string formatting error in exception.py by adding missing converstion type. Fixes bug #1089416 Change-Id: I48fb39c669b2a1e81f052349cdb700e146ee2c4d --- nova/exception.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nova/exception.py') diff --git a/nova/exception.py b/nova/exception.py index 7477d9c63..0d08491cd 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -753,8 +753,8 @@ class FlavorNotFound(NotFound): class FlavorAccessNotFound(NotFound): - message = _("Flavor access not found for %(flavor_id) / " - "%(project_id) combination.") + message = _("Flavor access not found for %(flavor_id)s / " + "%(project_id)s combination.") class CellNotFound(NotFound): -- cgit