Remove =format strings for Python3.7 users

This commit is contained in:
nathom 2021-03-30 12:07:36 -07:00
parent e791c4d744
commit 399e911f7f
2 changed files with 3 additions and 3 deletions

View file

@ -879,7 +879,7 @@ class Album(Tracklist):
elif self.client.source == "tidal":
self.container = "AAC"
else:
raise Exception(f"{self.bit_depth=}, {self.sampling_rate=}")
raise Exception(f"{self.bit_depth}, {self.sampling_rate}")
formatted_folder = clean_format(self.folder_format, self._get_formatter())