mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 07:44:37 +00:00
fix: SyntaxError: f-string: unmatched '[' Radiquum/furaffinity-dl#8 for python 3.10
This commit is contained in:
parent
8921fd52d7
commit
eed5ffd2a2
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ def next_button(page_url):
|
||||||
if config.category != "favorites":
|
if config.category != "favorites":
|
||||||
page_num = parse_next_button.parent.attrs["action"].split("/")[-2]
|
page_num = parse_next_button.parent.attrs["action"].split("/")[-2]
|
||||||
else:
|
else:
|
||||||
page_num = f"{parse_next_button.parent.attrs["action"].split("/")[-2]}/next"
|
page_num = f"{parse_next_button.parent.attrs['action'].split('/')[-2]}/next"
|
||||||
|
|
||||||
print(
|
print(
|
||||||
f"Downloading page {page_num}"
|
f"Downloading page {page_num}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue