summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTushar Patil <tushar.vitthal.patil@gmail.com>2011-01-25 14:50:04 -0800
committerTushar Patil <tushar.vitthal.patil@gmail.com>2011-01-25 14:50:04 -0800
commit7f04601100c06140445705ee74418907d9b27c0f (patch)
treee66f68f114ba67034266958e58dc9ca46ad10b87
parent50d845e717b3e9ceb650fb5058d44ed4fc1507ca (diff)
downloadnova-7f04601100c06140445705ee74418907d9b27c0f.tar.gz
nova-7f04601100c06140445705ee74418907d9b27c0f.tar.xz
nova-7f04601100c06140445705ee74418907d9b27c0f.zip
Limit all lines to a maximum of 79 characters
-rw-r--r--nova/api/ec2/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/api/ec2/__init__.py b/nova/api/ec2/__init__.py
index bb060ec8b..f661493b1 100644
--- a/nova/api/ec2/__init__.py
+++ b/nova/api/ec2/__init__.py
@@ -313,7 +313,8 @@ 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], context=context)
+ LOG.exception(_('ApiError raised: %s'), ex.args[0],
+ context=context)
if ex.code:
return self._error(req, context, ex.code, ex.args[0])
else: