Skip to content

Commit

Permalink
BEN-2516 - code review items, fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mnadasan committed Jul 15, 2022
1 parent a913ea9 commit 72d92fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filer/utils/checktrees.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def get_corrupted_root_nodes(self):
pk__in=list(self.corrupted_folders.keys())).\
values_list('tree_id', flat=True).distinct()
return self.manager.filter(
parent__isnull=True, deleted_ta__isnull=True, tree_id__in=corrupted_trees)
parent__isnull=True, deleted_at__isnull=True, tree_id__in=corrupted_trees)

def check_tree(self, pk, lft, tree_id, level=0):
"""
Expand Down

0 comments on commit 72d92fc

Please sign in to comment.