Skip to content

Commit

Permalink
[patch] Fixes described in previous commits
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Jan 3, 2024
1 parent c80757b commit e7ecab5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -3862,10 +3862,10 @@ def all_searched(self) -> bool:
self.model_file.select().where(self.model_file.Searched == False).count().execute()
)
if search_completed > 0:
self.logger.debug("All searches completed")
self.logger.debug("All searches completed [%s]", search_completed)
return True
else:
self.logger.debug("Searches not completed")
self.logger.debug("Searches not completed [%s]", search_completed)
return False

def run_search_loop(self) -> NoReturn:
Expand Down

0 comments on commit e7ecab5

Please sign in to comment.