diff options
| author | Rapptz <[email protected]> | 2019-04-14 21:05:20 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-04-14 21:05:20 -0400 |
| commit | 14d66e7b9c6e68f72cab22eedf2fea783f767b4a (patch) | |
| tree | b54452c39046e569e987693e2477be3beacd4823 /discord/client.py | |
| parent | Bump version to 1.1.0a (diff) | |
| download | discord.py-14d66e7b9c6e68f72cab22eedf2fea783f767b4a.tar.xz discord.py-14d66e7b9c6e68f72cab22eedf2fea783f767b4a.zip | |
Internal consistency with message related HTTPClient methods
Diffstat (limited to 'discord/client.py')
| -rw-r--r-- | discord/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/client.py b/discord/client.py index 5159c45e..e0d7900b 100644 --- a/discord/client.py +++ b/discord/client.py @@ -1125,7 +1125,7 @@ class Client: :class:`~discord.User` The user you requested. """ - data = await self.http.get_user_info(user_id) + data = await self.http.get_user(user_id) return User(state=self._connection, data=data) async def fetch_user_profile(self, user_id): |