diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-05-31 15:50:33 -0700 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-05-31 15:50:33 -0700 |
| commit | 81f40ed1ca284bc9a8ee948ae23fdff93d632cb0 (patch) | |
| tree | a9e04a8cf7773d6e25bed055702c66e2d27b5bad | |
| parent | b0c43e57ad6a7e5be8a749e70da39b7f7ba547bd (diff) | |
pep8
| -rw-r--r-- | nova/api/ec2/metadatarequesthandler.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/api/ec2/metadatarequesthandler.py b/nova/api/ec2/metadatarequesthandler.py index 9c8e52270..b70266a20 100644 --- a/nova/api/ec2/metadatarequesthandler.py +++ b/nova/api/ec2/metadatarequesthandler.py @@ -75,7 +75,8 @@ class MetadataRequestHandler(wsgi.Application): try: meta_data = cc.get_metadata(remote_address) except Exception: - LOG.exception(_('Failed to get metadata for ip: %s'), remote_address) + LOG.exception(_('Failed to get metadata for ip: %s'), + remote_address) msg = _('An unknown error has occurred. ' 'Please try your request again.') exc = webob.exc.HTTPInternalServerError(explanation=unicode(msg)) |
