diff --git a/steam/client/__init__.py b/steam/client/__init__.py index 180077d..28c5484 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -387,25 +387,26 @@ class SteamClient(CMClient, BuiltinBase): self.wait_event("channel_secured") @property - def can_relogin(self): + def relogin_available(self): """``True`` when the client has the nessesary data for :meth:`relogin`""" return bool(self.username) and bool(self.login_key) def relogin(self): - """Login without specifiying credentials. Can be used after the client instance has - already been logged on once before and has obtained :attr:`login_key`. - Listen for the ``new_login_key`` event. + """Login without needing credentials, essentially remember password. + The :attr:`login_key` is acquired after successful login and it will be + automatically acknowledged. Listen for the ``new_login_key`` event. + After that the client can relogin using this method. .. note:: - Only works when :attr:`can_relogin` is ``True``. + Only works when :attr:`relogin_available` is ``True``. .. code:: python - if client.can_relogin: client.relogin() + if client.relogin_available: client.relogin() else: client.login(user, pass) """ - if self.can_relogin: + if self.relogin_available: self.login(self.username, '', self.login_key) def login(self, username, password='', login_key=None, auth_code=None, two_factor_code=None):