From 335425e555259727b026a900de77639531a74bbe Mon Sep 17 00:00:00 2001 From: TheCommCraft Date: Sat, 18 May 2024 22:10:55 +0200 Subject: [PATCH] 1.2.13 --- setup.py | 2 +- warp/host/host.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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: