text fixes

This commit is contained in:
Fabian Dill 2020-06-21 16:13:42 +02:00
parent 033b139141
commit 5b72fd4e36
2 changed files with 1 additions and 5 deletions

View File

@ -205,7 +205,7 @@ def get_public_ipv6() -> str:
ip = urllib.request.urlopen('https://v6.ident.me').read().decode('utf8').strip()
except Exception as e:
logging.exception(e)
pass # we could be offline, in a local game, so no point in erroring out
pass # we could be offline, in a local game, or ipv6 may not be available
return ip
def get_options() -> dict:

View File

@ -23,10 +23,6 @@ class Room(db.Entity):
last_port = Optional(int, default=lambda: 0)
class Seed(db.Entity):
id = PrimaryKey(int, auto=True)
rooms = Set(Room)