Skip to content

Commit

Permalink
housekeeper.py: set a fallback for exclude_list
Browse files Browse the repository at this point in the history
  • Loading branch information
mattburchett committed May 26, 2023
1 parent 0de505b commit b9447ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion housekeeper.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def main():
# Initialize Housekeeper
dry_run = config.getboolean("Housekeeper", "dry_run", fallback=True)
inactive_days = int(config.get("Housekeeper", "inactive_days"))
exclude_list = config.get("Housekeeper", "exclude_list")
exclude_list = config.get("Housekeeper", "exclude_list", fallback="")

# Initialize Sonarr
sonarr_api_key = config.get("Sonarr", "api_key")
Expand Down

0 comments on commit b9447ad

Please sign in to comment.