We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 338eea2 commit 757c625Copy full SHA for 757c625
1 file changed
src/palace/manager/integration/license/overdrive/api.py
@@ -416,8 +416,8 @@ def collection_token(self) -> str:
416
if error:
417
message = library.get("message")
418
raise CannotLoadConfiguration(
419
- "Overdrive credentials are valid but could not fetch library: %s"
420
- % message
+ f"Overdrive credentials are valid but could not fetch library: {message}"
+ f' - collection: "{self.collection.name}"'
421
)
422
token = cast(str, library["collectionToken"])
423
self._cached_collection_token = OverdriveToken(
0 commit comments