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:
parent
6e70181f74
commit
e24a3a496a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user