1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 18:53:21 +01:00

[deviantart] fix --range for deviation & stash extractor

This commit is contained in:
Mike Fährmann 2019-06-06 18:45:10 +02:00
parent 40c7eb3424
commit f85e42cffc
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -369,6 +369,8 @@ class DeviantartDeviationExtractor(DeviantartExtractor):
("https://zzz.deviantart.com/art/zzz-1234567890"),
)
skip = Extractor.skip
def __init__(self, match):
DeviantartExtractor.__init__(self, match)
self.path = match.group(3)
@ -401,6 +403,8 @@ class DeviantartStashExtractor(DeviantartExtractor):
}),
)
skip = Extractor.skip
def __init__(self, match):
DeviantartExtractor.__init__(self, match)
self.stash_id = match.group(1)