Skip to content

Commit

Permalink
[skeb] fix post extractor (#2330)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Mar 9, 2022
1 parent 6df2fd6 commit 3ddc620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/skeb.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def __init__(self, match):
self.post_num = match.group(2)

def posts(self):
return (self.user_name, self.post_num,)
return ((self.user_name, self.post_num),)


class SkebUserExtractor(SkebExtractor):
Expand Down

0 comments on commit 3ddc620

Please sign in to comment.