Skip to content

Commit

Permalink
[reddit] fix AttributeError when using 'recursion' (fixes #879)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Jul 9, 2020
1 parent 94a08f0 commit 5a6e750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/reddit.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def items(self):
depth += 1
submissions = (
self.api.submission(sid) for sid in extra
if sid not in self._visited
if sid not in visited
)

def submissions(self):
Expand Down

0 comments on commit 5a6e750

Please sign in to comment.