Skip to content

Commit

Permalink
fixes #33 replace sonarr-series-scanner with renamarr
Browse files Browse the repository at this point in the history
  • Loading branch information
hollanbm committed May 28, 2024
1 parent 8733465 commit 60233fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires-python = ">= 3.12"

[tool.poetry]
name = "sonarr-series-scanner"
name = "renamarr"
version = "0.1.0"
description = ""
authors = ["Brad Holland <hollanbm@gmail.com>"]
Expand Down
6 changes: 3 additions & 3 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def start(self) -> None:
"Possible config error? -- No jobs configured for current instance"
)
logger.warning(
"Please see example config for comparison -- https://github.com/hollanbm/sonarr-series-scanner/blob/main/docker/config.yml.example"
"Please see example config for comparison -- https://github.com/hollanbm/renamarr/blob/main/docker/config.yml.example"
)
continue
if sonarr_config.series_scanner.enabled:
Expand All @@ -122,7 +122,7 @@ def start(self) -> None:
"sonarr[].existing_renamer config option, has been renamed to sonarr[].renamarr. Please update config, as this will stop working in future versions"
)
logger.warning(
"Please see example config for comparison -- https://github.com/hollanbm/sonarr-series-scanner/blob/main/docker/config.yml.example"
"Please see example config for comparison -- https://github.com/hollanbm/renamarr/blob/main/docker/config.yml.example"
)
self.__schedule_sonarr_renamarr(sonarr_config)

Expand All @@ -135,7 +135,7 @@ def start(self) -> None:
"Possible config error? -- No jobs configured for current instance"
)
logger.warning(
"Please see example config for comparison -- https://github.com/hollanbm/sonarr-series-scanner/blob/main/docker/config.yml.example"
"Please see example config for comparison -- https://github.com/hollanbm/renamarr/blob/main/docker/config.yml.example"
)

if schedule.get_jobs():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def test_legacy_config_existing_renamer_enabled(
"sonarr[].existing_renamer config option, has been renamed to sonarr[].renamarr. Please update config, as this will stop working in future versions"
),
call(
"Please see example config for comparison -- https://github.com/hollanbm/sonarr-series-scanner/blob/main/docker/config.yml.example"
"Please see example config for comparison -- https://github.com/hollanbm/renamarr/blob/main/docker/config.yml.example"
),
]
)
Expand Down

0 comments on commit 60233fe

Please sign in to comment.