Skip to content

Commit

Permalink
Fixed another SyntaxError in f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
Commandcracker committed Jun 12, 2024
1 parent b0cce73 commit 88c2983
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gucken/__init__.py
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion src/gucken/hoster/streamtape.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:]}")

0 comments on commit 88c2983

Please sign in to comment.