diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-11-29 16:47:53 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-11-29 16:47:53 +0000 |
| commit | 284d11c559f8749d04833b3820b62c2007ecb6bc (patch) | |
| tree | f32321c6ddc3f1aaf6d3064363170b3a63064920 /nova | |
| parent | a89c2ababda2ebdc115c171605a2989fc80bf101 (diff) | |
| parent | 027248a9bbc906940de948d75b58709e0971141f (diff) | |
Merge "Fix KeyError of log message in compute/api.py"
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/compute/api.py | 2 |
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, |
