From 88c29832328a27f9af080c63e164563768d34a30 Mon Sep 17 00:00:00 2001 From: Commandcracker <49335821+Commandcracker@users.noreply.github.com> Date: Wed, 12 Jun 2024 20:04:14 +0200 Subject: [PATCH] Fixed another SyntaxError in f-string --- src/gucken/__init__.py | 2 +- src/gucken/hoster/streamtape.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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:]}")