diff options
| author | Alex Meade <alex.meade@rackspace.com> | 2011-08-11 11:57:16 -0400 |
|---|---|---|
| committer | Alex Meade <alex.meade@rackspace.com> | 2011-08-11 11:57:16 -0400 |
| commit | 7ae64a0b7e1db7e46d183bfa8a2fe1be5d47f1cc (patch) | |
| tree | 6b20b1e7e433d2aec6cf3e6e4ef482b0639d1c89 /nova/api | |
| parent | 8517d9563191b635669032e8364d8fa64876b977 (diff) | |
| download | nova-7ae64a0b7e1db7e46d183bfa8a2fe1be5d47f1cc.tar.gz nova-7ae64a0b7e1db7e46d183bfa8a2fe1be5d47f1cc.tar.xz nova-7ae64a0b7e1db7e46d183bfa8a2fe1be5d47f1cc.zip | |
removed extra paren
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/servers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/servers.py b/nova/api/openstack/servers.py index c3bb23adb..4c56539a4 100644 --- a/nova/api/openstack/servers.py +++ b/nova/api/openstack/servers.py @@ -214,7 +214,7 @@ class Controller(object): if key in self.actions: return self.actions[key](body, req, id) else: - msg = _("There is no such server action: %s") % (key,)) + msg = _("There is no such server action: %s") % (key,) raise exc.HTTPBadRequest(explanation=msg) msg = _("Invalid request body") |
