From ec1e2add21e6f3a7b482e0d02a1fbb40576b67ae Mon Sep 17 00:00:00 2001 From: Ian Webster Date: Mon, 4 Oct 2021 13:11:10 -0700 Subject: [PATCH] Update user-agent (#92) --- discord/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/http.py b/discord/http.py index db352ce2..e7a623d2 100644 --- a/discord/http.py +++ b/discord/http.py @@ -188,7 +188,7 @@ class HTTPClient: self.proxy_auth: Optional[aiohttp.BasicAuth] = proxy_auth self.use_clock: bool = not unsync_clock - user_agent = "DiscordBot (https://github.com/Rapptz/discord.py {0}) Python/{1[0]}.{1[1]} aiohttp/{2}" + user_agent = "DiscordBot (https://github.com/iDevision/enhanced-discord.py {0}) Python/{1[0]}.{1[1]} aiohttp/{2}" self.user_agent: str = user_agent.format(__version__, sys.version_info, aiohttp.__version__) def recreate(self) -> None: