summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Tran <jtran@attinteractive.com>2011-08-10 16:19:21 -0700
committerJohn Tran <jtran@attinteractive.com>2011-08-10 16:19:21 -0700
commit7b72972cbc9fbd267160d8d3282e1d0ec888de98 (patch)
tree17dfd0bc70f02bd962e09f78aca22331a86f4374
parent6548ce754984f2eb5e72612392a8a3392c2a21a2 (diff)
removed typos, end of line chars
-rw-r--r--nova/api/ec2/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/nova/api/ec2/__init__.py b/nova/api/ec2/__init__.py
index ffd5382bf..96df97393 100644
--- a/nova/api/ec2/__init__.py
+++ b/nova/api/ec2/__init__.py
@@ -358,10 +358,10 @@ class Executor(wsgi.Application):
LOG.debug(_('InvalidParameterValue raised: %s'), unicode(ex),
context=context)
return self._error(req, context, type(ex).__name__, unicode(ex))
- except exception.InvalidPortRange as ex:$
- LOG.debug(_('InvalidPortRange raised: %s'), unicode(ex),$
- context=context)$
- return self._error(req, context, type(ex).__name__, unicode(ex))$
+ except exception.InvalidPortRange as ex:
+ LOG.debug(_('InvalidPortRange raised: %s'), unicode(ex),
+ context=context)
+ return self._error(req, context, type(ex).__name__, unicode(ex))
except Exception as ex:
extra = {'environment': req.environ}
LOG.exception(_('Unexpected error raised: %s'), unicode(ex),