aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/weebcentral.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2025-01-28 19:12:16 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2025-01-28 19:12:16 -0500
commit5a7d8217a6edc66e3cf25ca0eee6614a10fa866c (patch)
treea941825bf5fcf706f23b49e536edb9a2b26d5b6c /gallery_dl/extractor/weebcentral.py
parente8f1b0d968a07cba884462e10718628394d1bae5 (diff)
parenta26df18796ff4e506b16bf32fcec9336233b9e2e (diff)
Update upstream source from tag 'upstream/1.28.5'
Update to upstream version '1.28.5' with Debian dir a2e4b8ba663c03c37256ad2b059b382999e473bc
Diffstat (limited to 'gallery_dl/extractor/weebcentral.py')
-rw-r--r--gallery_dl/extractor/weebcentral.py6
1 files changed, 3 insertions, 3 deletions
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