Skip to content

Commit

Permalink
[weebcentral] fix extraction (#6860)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Jan 19, 2025
1 parent f867e69 commit 6ce310d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gallery_dl/extractor/weebcentral.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ def images(self, page):

results = []
while True:
src = extr(' src="', '"')
src = extr('src="', '"')
if not src:
break
results.append((src, {
"width" : text.parse_int(extr(' width="' , '"')),
"height": text.parse_int(extr(' height="', '"')),
"width" : text.parse_int(extr('width="' , '"')),
"height": text.parse_int(extr('height="', '"')),
}))
return results

Expand Down

0 comments on commit 6ce310d

Please sign in to comment.