Browse Source

fix credential_location check for sentry file

pull/50/head
Rossen Georgiev 9 years ago
parent
commit
7ce2f360d9
  1. 2
      steam/client/__init__.py

2
steam/client/__init__.py

@ -326,7 +326,7 @@ class SteamClient(CMClient, BuiltinBase):
return response[0].body return response[0].body
def _get_sentry_path(self, username): def _get_sentry_path(self, username):
if self.credential_location is not None: if self.credential_location:
return os.path.join(self.credential_location, return os.path.join(self.credential_location,
"%s_sentry.bin" % username "%s_sentry.bin" % username
) )

Loading…
Cancel
Save