summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorSteve Baker <sbaker@redhat.com>2013-08-08 14:10:57 +1200
committerSteve Baker <sbaker@redhat.com>2013-08-08 14:10:57 +1200
commite24a3a496ab7776e3d4d8254bc7676728315ae0e (patch)
tree5c21b62b0dec8de41f8426cf9ac4226bd796584a /bin
parent6e70181f742cd4605b379ad02f8ddfdaeaf45316 (diff)
downloadheat-e24a3a496ab7776e3d4d8254bc7676728315ae0e.tar.gz
Fix H231 Python 3.x incompatible 'except x,y:'
This is triggered in the pep8 check when using the syncronised requirements versions. Change-Id: Ie73c44b85025f79e7358303fab2697e076f7cabf
Diffstat (limited to 'bin')
-rwxr-xr-xbin/heat-api-cloudwatch2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/heat-api-cloudwatch b/bin/heat-api-cloudwatch
index 155a4d48f..6a53a43c5 100755
--- a/bin/heat-api-cloudwatch
+++ b/bin/heat-api-cloudwatch
@@ -64,5 +64,5 @@ if __name__ == '__main__':
server = wsgi.Server()
server.start(app, cfg.CONF, default_port=port)
server.wait()
- except RuntimeError, e:
+ except RuntimeError as e:
sys.exit("ERROR: %s" % e)