From 8e01e6d9dcee71be2cc1be65b87e68d45b54e0ed Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 3 May 2022 18:43:24 +0100 Subject: [PATCH] cdn: Cope with depots with no name App ID 1628350 "Steam Linux Runtime - Sniper" contains depot 1628351, which has no name, causing steam.client.cdn.CDNClient to crash with a KeyError while retrieving manifests from that depot. Fall back to using the depot ID as a placeholder name. Signed-off-by: Simon McVittie --- steam/client/cdn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/steam/client/cdn.py b/steam/client/cdn.py index 457bba4..db548f0 100644 --- a/steam/client/cdn.py +++ b/steam/client/cdn.py @@ -740,7 +740,7 @@ class CDNClient(object): and depot_id not in self.licensed_depot_ids and depot_id not in self.licensed_app_ids): self._LOG.debug("No license for depot %s (%s). Skipping...", - repr(depot_info['name']), + repr(depot_info.get('name', depot_id)), depot_id, ) continue @@ -769,7 +769,7 @@ class CDNClient(object): depot_id, manifest_gid, decrypt, - depot_info['name'], + depot_info.get('name', depot_id), )) # collect results