summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-11-29 16:47:53 +0000
committerGerrit Code Review <review@openstack.org>2012-11-29 16:47:53 +0000
commit284d11c559f8749d04833b3820b62c2007ecb6bc (patch)
treef32321c6ddc3f1aaf6d3064363170b3a63064920 /nova
parenta89c2ababda2ebdc115c171605a2989fc80bf101 (diff)
parent027248a9bbc906940de948d75b58709e0971141f (diff)
Merge "Fix KeyError of log message in compute/api.py"
Diffstat (limited to 'nova')
-rw-r--r--nova/compute/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py
index e377b0e32..eb3b23c29 100644
--- a/nova/compute/api.py
+++ b/nova/compute/api.py
@@ -1764,7 +1764,7 @@ class API(base.Base):
pid = context.project_id
LOG.warn(_("%(overs)s quota exceeded for %(pid)s,"
- " tried to resize instance. %(msg)s"), locals())
+ " tried to resize instance."), locals())
raise exception.TooManyInstances(overs=overs,
req=deltas[resource],
used=used, allowed=total_allowed,