From a26df18796ff4e506b16bf32fcec9336233b9e2e Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Tue, 28 Jan 2025 19:12:09 -0500 Subject: New upstream version 1.28.5. --- gallery_dl/extractor/weebcentral.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gallery_dl/extractor/weebcentral.py') diff --git a/gallery_dl/extractor/weebcentral.py b/gallery_dl/extractor/weebcentral.py index 39f998a..fc1badb 100644 --- a/gallery_dl/extractor/weebcentral.py +++ b/gallery_dl/extractor/weebcentral.py @@ -80,12 +80,12 @@ class WeebcentralChapterExtractor(WeebcentralBase, ChapterExtractor): 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 -- cgit v1.2.3