There was an error while loading. Please reload this page.
1 parent b0cce73 commit 88c2983Copy full SHA for 88c2983
src/gucken/__init__.py
@@ -1,4 +1,4 @@
1
import warnings
2
warnings.filterwarnings('ignore', message='Using slow pure-python SequenceMatcher. Install python-Levenshtein to remove this warning')
3
4
-__version__ = "0.2.1"
+__version__ = "0.2.2"
src/gucken/hoster/streamtape.py
@@ -17,4 +17,4 @@ async def get_direct_link(self) -> DirectLink:
17
# f.write(response.text.encode('utf-8'))
18
19
match = STREAMTAPE_PATTERN.search(response.text)
20
- return DirectLink(f"https:{match.group("s1")}{match.group('s2')[4:]}")
+ return DirectLink(f"https:{match.group('s1')}{match.group('s2')[4:]}")
0 commit comments