Remove unused variable. Ref #1744

pull/1763/head
grossmj 4 years ago
parent 72c6f5b484
commit 7b61724213

@ -259,9 +259,8 @@ def run():
port = int(server_config["port"]) port = int(server_config["port"])
server = WebServer.instance(host, port) server = WebServer.instance(host, port)
status = 0
try: try:
status = server.run() server.run()
except OSError as e: except OSError as e:
# This is to ignore OSError: [WinError 0] The operation completed successfully exception on Windows. # This is to ignore OSError: [WinError 0] The operation completed successfully exception on Windows.
if not sys.platform.startswith("win") and not e.winerror == 0: if not sys.platform.startswith("win") and not e.winerror == 0:

Loading…
Cancel
Save