Skip to content

Commit

Permalink
Addresses typo in (#192) @ clean up snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
arturs-krapans committed Aug 10, 2022
1 parent 186bf15 commit c73fdb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpaste/management/commands/cleanup_snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def handle(self, *args, **options):
timezone.now() - timedelta(seconds=config.EXPIRE_DEFAULT)
),
)
deleteable_snippets = (expired_snippets | onetime_unviewed_snippets)
deleteable_snippets = (deleteable_snippets | onetime_unviewed_snippets)

if len(deleteable_snippets) == 0:
self.stdout.write(u"No snippets to delete.")
Expand Down

0 comments on commit c73fdb0

Please sign in to comment.