Remove some errant trailing commas.

This commit is contained in:
Benno Rice 2017-05-24 21:10:44 -07:00 committed by Berker Peksag
parent 032271a030
commit e6edcb454a
2 changed files with 2 additions and 2 deletions

View File

@ -588,7 +588,7 @@ class Arbiter(object):
sys.stderr.flush()
sys.exit(self.APP_LOAD_ERROR)
except:
self.log.exception("Exception in worker process"),
self.log.exception("Exception in worker process")
if not worker.booted:
sys.exit(self.WORKER_BOOT_ERROR)
sys.exit(-1)

View File

@ -183,7 +183,7 @@ def create(req, sock, client, server, cfg):
server = host.split(':')
if len(server) == 1:
if url_scheme == "http":
server.append(80),
server.append(80)
elif url_scheme == "https":
server.append(443)
else: