diff --git a/setup.py b/setup.py index 54fd7a0..df01ebd 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ with open("README.md", encoding="utf-8") as f: long_description = f.read() -VERSION = '1.2.12' +VERSION = '1.2.13' setup( name='warp-python', diff --git a/warp/host/host.py b/warp/host/host.py index 20a47be..f7054b8 100644 --- a/warp/host/host.py +++ b/warp/host/host.py @@ -29,6 +29,7 @@ def __init__(self, *, app : Flask, tld : str = None, tlds : list[str] = None, do self.domains = domains or {} self.tlds = tlds or [tld] self.tlds = [_tld.strip(".") for _tld in self.tlds] + self.events = {} try: assert tld or tlds except AssertionError: