Update Tox config and fix failing CI envs

Updates base Python version for Travis CI from 2.7 to 3.6 and fixes a
linting error.
This commit is contained in:
John Franey 2019-05-13 17:30:29 -04:00
commit 9e07234bae
3 changed files with 5 additions and 5 deletions

View file

@ -138,6 +138,6 @@ if __name__ == '__main__':
args.port, args.server)
try:
httpd.serve_forever()
except KeyboardInterrupt as e:
except KeyboardInterrupt:
logger.info("Shutting down server.")
httpd.socket.close()