From 7ce2f360d9dfa49b6ebf12c7834e53edd331928c Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 18 Aug 2016 23:29:21 +0100 Subject: [PATCH] fix credential_location check for sentry file --- steam/client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/client/__init__.py b/steam/client/__init__.py index 28c5484..8845892 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -326,7 +326,7 @@ class SteamClient(CMClient, BuiltinBase): return response[0].body def _get_sentry_path(self, username): - if self.credential_location is not None: + if self.credential_location: return os.path.join(self.credential_location, "%s_sentry.bin" % username )