added config.py changes

This commit is contained in:
MasterOfKay
2025-11-28 16:27:26 +01:00
parent dc9823cd28
commit 8aec80246a
3 changed files with 28 additions and 7 deletions

View File

@@ -47,6 +47,8 @@ class Movie(Title):
def __str__(self) -> str:
if self.year:
if config.dash_naming:
return f"{self.name} - {self.year}"
return f"{self.name} ({self.year})"
return self.name