Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
[FIX] config
Browse files Browse the repository at this point in the history
  • Loading branch information
MrZablah committed Nov 8, 2023
1 parent 3d2c6ac commit 55f0eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utility/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def load_config(self):

# Renamer variables
self.use_plex = self.script_data.get('use_plex', False) # Use False as default value for use_plex if not provided
self.source_dir = self.script_data.get('source_dir', []) # Use an empty list as default value for source_dir if not provided
self.source_dir = self.script_data.get('source_dir', '') # Use empty string as default value for source_dir if not provided
self.source_overrides = self.script_data.get('source_overrides', []) # Use an empty list as default value for source_override if not provided
self.destination_dir = self.script_data.get('destination_dir', '') # Use empty string as default value for destination_dir if not provided
self.movies_threshold = self.script_data.get('movies_threshold', 0) # Use 0 as default value for movies_threshold if not provided
Expand Down

0 comments on commit 55f0eb6

Please sign in to comment.