summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorTushar Patil <tushar.vitthal.patil@gmail.com>2011-01-25 15:53:43 -0800
committerTushar Patil <tushar.vitthal.patil@gmail.com>2011-01-25 15:53:43 -0800
commitccb5e573f7a3f85a2b591d3a1fb968003e321b28 (patch)
tree8f272352971d8482b7b592960cf9e1201d33b7b4 /nova
parent7f04601100c06140445705ee74418907d9b27c0f (diff)
downloadnova-ccb5e573f7a3f85a2b591d3a1fb968003e321b28.tar.gz
nova-ccb5e573f7a3f85a2b591d3a1fb968003e321b28.tar.xz
nova-ccb5e573f7a3f85a2b591d3a1fb968003e321b28.zip
Fixed pep8 errors
Diffstat (limited to 'nova')
-rw-r--r--nova/api/ec2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/ec2/__init__.py b/nova/api/ec2/__init__.py
index f661493b1..79f5af897 100644
--- a/nova/api/ec2/__init__.py
+++ b/nova/api/ec2/__init__.py
@@ -313,7 +313,7 @@ class Executor(wsgi.Application):
LOG.info(_('NotFound raised: %s'), ex.args[0], context=context)
return self._error(req, context, type(ex).__name__, ex.args[0])
except exception.ApiError as ex:
- LOG.exception(_('ApiError raised: %s'), ex.args[0],
+ LOG.exception(_('ApiError raised: %s'), ex.args[0],
context=context)
if ex.code:
return self._error(req, context, ex.code, ex.args[0])