Skip to content

Commit 88c2983

Browse files
Fixed another SyntaxError in f-string
1 parent b0cce73 commit 88c2983

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/gucken/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import warnings
22
warnings.filterwarnings('ignore', message='Using slow pure-python SequenceMatcher. Install python-Levenshtein to remove this warning')
33

4-
__version__ = "0.2.1"
4+
__version__ = "0.2.2"

src/gucken/hoster/streamtape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ async def get_direct_link(self) -> DirectLink:
1717
# f.write(response.text.encode('utf-8'))
1818

1919
match = STREAMTAPE_PATTERN.search(response.text)
20-
return DirectLink(f"https:{match.group("s1")}{match.group('s2')[4:]}")
20+
return DirectLink(f"https:{match.group('s1')}{match.group('s2')[4:]}")

0 commit comments

Comments
 (0)