diff --git a/steampy/client.py b/steampy/client.py index 6ee9a36..4585b4f 100644 --- a/steampy/client.py +++ b/steampy/client.py @@ -66,7 +66,7 @@ def get_steam_id(self) -> int: def login(self, username: str = None, password: str = None, steam_guard: str = None) -> None: if None in [self.username, self._password, self.steam_guard_string] and None in [username, password, steam_guard]: - raise InvalidCredentials('You have to pass username, password and steam_guard' + raise InvalidCredentials('You have to pass username, password and steam_guard ' 'parameters when using "login" method') if None in [self.username, self._password, self.steam_guard_string]: