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

Authored by: bashonly
pull/9765/head
bashonly 2 weeks ago
parent ed44e23245
commit adb148358e
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0

@ -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]

Loading…
Cancel
Save