diff options
| author | Tushar Patil <tushar.vitthal.patil@gmail.com> | 2011-01-25 15:53:43 -0800 |
|---|---|---|
| committer | Tushar Patil <tushar.vitthal.patil@gmail.com> | 2011-01-25 15:53:43 -0800 |
| commit | ccb5e573f7a3f85a2b591d3a1fb968003e321b28 (patch) | |
| tree | 8f272352971d8482b7b592960cf9e1201d33b7b4 /nova | |
| parent | 7f04601100c06140445705ee74418907d9b27c0f (diff) | |
| download | nova-ccb5e573f7a3f85a2b591d3a1fb968003e321b28.tar.gz nova-ccb5e573f7a3f85a2b591d3a1fb968003e321b28.tar.xz nova-ccb5e573f7a3f85a2b591d3a1fb968003e321b28.zip | |
Fixed pep8 errors
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/api/ec2/__init__.py | 2 |
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]) |
