Skip to content

Commit

Permalink
[deviantart] fix --range for deviation & stash extractor
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Jun 6, 2019
1 parent 40c7eb3 commit f85e42c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gallery_dl/extractor/deviantart.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -401,6 +403,8 @@ class DeviantartStashExtractor(DeviantartExtractor):
}),
)

skip = Extractor.skip

def __init__(self, match):
DeviantartExtractor.__init__(self, match)
self.stash_id = match.group(1)
Expand Down

0 comments on commit f85e42c

Please sign in to comment.