Skip to content

Commit

Permalink
Fix Expiry Check Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cehune committed Sep 12, 2024
1 parent 10bd7d9 commit d535a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file_auto_expiry/utils/expiry_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def is_expired_folder(folder_path, folder_stat, expiry_threshold):

if file_expiry_information.is_expired:
# First val in the expiry is always the boolean true or false
is_expired_flag = False
is_expired_flag = True

creators = file_expiry_information.creators # collects tuple of (name, uid, gid)
# If file_expiry_information is from a folder, it should already contain a set
Expand Down

0 comments on commit d535a4e

Please sign in to comment.