mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-25 04:02:32 +01:00
Fixing syntax on python 3.5, the sad days before f-strings
This commit is contained in:
parent
311272f55a
commit
01ace529b6
@ -170,7 +170,7 @@ class WeasylFavoriteExtractor(WeasylExtractor):
|
||||
|
||||
def items(self):
|
||||
if self.userid is None and self.username is not None:
|
||||
new_url = self.root + f"/favorites/{self.username}"
|
||||
new_url = self.root + "/favorites/{}".format(self.username)
|
||||
page = self.request(new_url).text
|
||||
self.userid = text.extr(
|
||||
page,
|
||||
|
Loading…
Reference in New Issue
Block a user