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
This commit is contained in:
Steve Baker 2013-08-08 14:10:57 +12:00
parent 6e70181f74
commit e24a3a496a

View File

@ -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)