diff --git a/server.py b/server.py index 1135fff88bd..dca06f6fc32 100644 --- a/server.py +++ b/server.py @@ -632,8 +632,6 @@ async def start(self, address, port, verbose=True, call_on_start=None): site = web.TCPSite(runner, address, port) await site.start() - if address == '': - address = '0.0.0.0' if verbose: print("Starting server\n") print("To see the GUI go to: http://{}:{}".format(address, port))