summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/api/ec2/metadatarequesthandler.py3
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))