diff --git a/src/gucken/__init__.py b/src/gucken/__init__.py index 8ded7a6..095bf2e 100644 --- a/src/gucken/__init__.py +++ b/src/gucken/__init__.py @@ -1,4 +1,4 @@ import warnings warnings.filterwarnings('ignore', message='Using slow pure-python SequenceMatcher. Install python-Levenshtein to remove this warning') -__version__ = "0.2.1" +__version__ = "0.2.2" diff --git a/src/gucken/hoster/streamtape.py b/src/gucken/hoster/streamtape.py index d8d6899..aa810dd 100644 --- a/src/gucken/hoster/streamtape.py +++ b/src/gucken/hoster/streamtape.py @@ -17,4 +17,4 @@ async def get_direct_link(self) -> DirectLink: # f.write(response.text.encode('utf-8')) match = STREAMTAPE_PATTERN.search(response.text) - return DirectLink(f"https:{match.group("s1")}{match.group('s2')[4:]}") + return DirectLink(f"https:{match.group('s1')}{match.group('s2')[4:]}")