diff options
| author | 2020-04-29 17:42:33 -0400 | |
|---|---|---|
| committer | 2020-04-29 17:42:33 -0400 | |
| commit | d5b96ce44b7809f5ae01e3e9d70a1d58fe21ccf5 (patch) | |
| tree | 1302b36780656b71ccb4aebda4f7ea1e2c744e52 /gallery_dl/extractor/booru.py | |
| parent | cf188f30e1c27bdb900fa2623a9ff91b944633b2 (diff) | |
New upstream version 1.13.5upstream/1.13.5
Diffstat (limited to 'gallery_dl/extractor/booru.py')
| -rw-r--r-- | gallery_dl/extractor/booru.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gallery_dl/extractor/booru.py b/gallery_dl/extractor/booru.py index 162e9cc..be0027a 100644 --- a/gallery_dl/extractor/booru.py +++ b/gallery_dl/extractor/booru.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright 2015-2019 Mike Fährmann +# Copyright 2015-2020 Mike Fährmann # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as @@ -171,7 +171,8 @@ class GelbooruPoolMixin(PoolMixin): name, pos = text.extract(page, "<h4>Pool: ", "</h4>") if not name: raise exception.NotFoundError("pool") - self.posts = list(text.extract_iter(page, 'id="p', '"', pos)) + self.posts = list(text.extract_iter( + page, 'class="thumb" id="p', '"', pos)) return { "pool": text.parse_int(self.pool), |
