Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed May 16, 2024
1 parent 3811589 commit a12bbd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -4820,6 +4820,7 @@ def run_search_loop(self):
class FreeSpaceManager(Arr):
def __init__(self, categories: set[str], manager: ArrManager):
self._name = "FreeSpaceManager"
self.manager = manager
self.logger = logging.getLogger(f"qBitrr.{self._name}")
self._LOG_LEVEL = self.manager.qbit_manager.logger.level
if ENABLE_LOGS:
Expand All @@ -4835,7 +4836,6 @@ def __init__(self, categories: set[str], manager: ArrManager):
run_logs(self.logger)
self.categories = categories
self.logger.trace("Categories: %s", self.categories)
self.manager = manager
self.pause = set()
self.resume = set()
self.expiring_bool = ExpiringSet(max_age_seconds=10)
Expand Down

0 comments on commit a12bbd3

Please sign in to comment.