summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorJohannes Erdfelt <johannes.erdfelt@rackspace.com>2012-08-07 23:10:56 +0000
committerJohannes Erdfelt <johannes.erdfelt@rackspace.com>2012-08-07 23:17:58 +0000
commit39b7e7ea43448cec4f8cf78a514d06a381ceb432 (patch)
treed8903f10c3598ce93d165eadd38cbc5248fb81e0 /nova
parenta418654b070c63c4bed5e3e5523fb947934626f9 (diff)
Fix invalid exception format strings
Some exception formation strings were missing the conversion type Change-Id: I99fda0a49acce8c5c1f1b9a09bcaff24140aaf44
Diffstat (limited to 'nova')
-rw-r--r--nova/exception.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nova/exception.py b/nova/exception.py
index 7e3976d0f..a7ce890b0 100644
--- a/nova/exception.py
+++ b/nova/exception.py
@@ -179,7 +179,7 @@ class DBError(NovaException):
class DeprecatedConfig(NovaException):
- message = _("Fatal call to deprecated config %(msg)")
+ message = _("Fatal call to deprecated config %(msg)s")
class DecryptionFailure(NovaException):
@@ -1129,11 +1129,11 @@ class CouldNotFetchImage(NovaException):
class TaskAlreadyRunning(NovaException):
- message = _("Task %(task_name) is already running on host %(host)")
+ message = _("Task %(task_name)s is already running on host %(host)s")
class TaskNotRunning(NovaException):
- message = _("Task %(task_name) is not running on host %(host)")
+ message = _("Task %(task_name)s is not running on host %(host)s")
class InstanceIsLocked(InstanceInvalidState):