aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/subscribestar.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2024-08-03 20:27:50 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2024-08-03 20:27:50 -0400
commitad105563ff9e1e82b0714d9bf2de8e8247a96512 (patch)
tree9ce5d2ef148ba3caad5171b79e7a7cd051977dd2 /gallery_dl/extractor/subscribestar.py
parentdd947614238f176637b2518ee24e588ca5920dea (diff)
parent032e5bed275a253e122ed9ac86dac7b8c4204172 (diff)
Update upstream source from tag 'upstream/1.27.2'
Update to upstream version '1.27.2' with Debian dir 30ac047f32a7127d1f2b2198647d93f92db9f287
Diffstat (limited to 'gallery_dl/extractor/subscribestar.py')
-rw-r--r--gallery_dl/extractor/subscribestar.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gallery_dl/extractor/subscribestar.py b/gallery_dl/extractor/subscribestar.py
index 0abb3ab..7c760ac 100644
--- a/gallery_dl/extractor/subscribestar.py
+++ b/gallery_dl/extractor/subscribestar.py
@@ -127,6 +127,8 @@ class SubscribestarExtractor(Extractor):
}
def _parse_datetime(self, dt):
+ if dt.startswith("Updated on "):
+ dt = dt[11:]
date = text.parse_datetime(dt, "%b %d, %Y %I:%M %p")
if date is dt:
date = text.parse_datetime(dt, "%B %d, %Y %I:%M %p")