[utils] `read_batch_urls`: Fix deprecated `re.split` positional arg (3.13)

Authored by: bashonly
pull/9765/head
bashonly 2024-04-30 17:52:25 -05:00
rodzic ed44e23245
commit adb148358e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 783F096F253D15B0
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -2522,7 +2522,7 @@ def read_batch_urls(batch_fd):
return False
# "#" cannot be stripped out since it is part of the URI
# However, it can be safely stripped out if following a whitespace
return re.split(r'\s#', url, 1)[0].rstrip()
return re.split(r'\s#', url, maxsplit=1)[0].rstrip()
with contextlib.closing(batch_fd) as fd:
return [url for url in map(fixup, fd) if url]