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

Commit

Permalink
Better error reporting than "1"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Mar 17, 2024
1 parent a4fafb3 commit f8546fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cyberdrop_dl/managers/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def startup(self) -> None:
self.cache_manager.startup(self.path_manager.cache_dir / "cache.yaml")
self.config_manager = ConfigManager(self)
self.config_manager.startup()
self.vi_mode = self.config_manager.global_settings_data['General']['vi_mode'] if self.args_manager.vi_mode == None else self.args_manager.vi_mode
self.vi_mode = self.config_manager.global_settings_data['General']['vi_mode'] if self.args_manager.vi_mode is None else self.args_manager.vi_mode

self.path_manager.startup()
self.log_manager = LogManager(self)
Expand Down

0 comments on commit f8546fe

Please sign in to comment.