Skip to content

Commit

Permalink
ljust fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Sep 11, 2024
1 parent 4d298b2 commit 650e139
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -2465,10 +2465,10 @@ def db_update_single_series(
SeriesTitle.ljust(60, "."),
SeasonNumber,
EpisodeNumber,
searched.ljust(5),
upgrade.ljust(5),
QualityMet.ljust(5),
customFormatMet.ljust(5),
str(searched).ljust(5),
str(upgrade).ljust(5),
str(QualityMet).ljust(5),
str(customFormatMet).ljust(5),
)

if request:
Expand Down Expand Up @@ -2618,8 +2618,8 @@ def db_update_single_series(
self.logger.debug(
"Updating database entry | %s [Searched:%s][Upgrade:%s]",
Title.ljust(60, "."),
searched.ljust(5),
upgrade.ljust(5),
str(searched).ljust(5),
str(upgrade).ljust(5),
)

db_commands = self.series_file_model.insert(
Expand Down Expand Up @@ -2775,10 +2775,10 @@ def db_update_single_series(
self.logger.debug(
"Updating database entry | %s [Searched:%s][Upgrade:%s][QualityMet:%s][CustomFormatMet:%s]",
title.ljust(60, "."),
searched.ljust(5),
upgrade.ljust(5),
qualityMet.ljust(5),
customFormatMet.ljust(5),
str(searched).ljust(5),
str(upgrade).ljust(5),
str(qualityMet).ljust(5),
str(customFormatMet).ljust(5),
)

db_commands = self.model_file.insert(
Expand Down

0 comments on commit 650e139

Please sign in to comment.