aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/postmill.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2024-10-25 17:27:36 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2024-10-25 17:27:36 -0400
commita46d8cec37ef1e7370a3127dd5bf3a47e7dc40de (patch)
tree27382aedd6d14d1add2b1a37e6df2f3e52f0ac4e /gallery_dl/extractor/postmill.py
parente4f39ad7148b104ab522ee13e4af3d3003b65e0f (diff)
parentfc004701f923bb954a22c7fec2ae8d607e78cb2b (diff)
Update upstream source from tag 'upstream/1.27.7'
Update to upstream version '1.27.7' with Debian dir f4e7d47b82b8fc4fb17fad4aa54873015dcc81c1
Diffstat (limited to 'gallery_dl/extractor/postmill.py')
-rw-r--r--gallery_dl/extractor/postmill.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gallery_dl/extractor/postmill.py b/gallery_dl/extractor/postmill.py
index 29b351b..8877175 100644
--- a/gallery_dl/extractor/postmill.py
+++ b/gallery_dl/extractor/postmill.py
@@ -50,7 +50,7 @@ class PostmillExtractor(BaseExtractor):
forum = match.group(1)
id = int(match.group(2))
- is_text_post = url.startswith("/")
+ is_text_post = (url[0] == "/")
is_image_post = self._search_image_tag(page) is not None
data = {
"title": title,