From 757a3114dcad63086515a2026d1b203a19bccbf4 Mon Sep 17 00:00:00 2001 From: Michael H Date: Mon, 28 May 2018 01:06:13 -0400 Subject: [PATCH] [V3] rpc close removed (#1726) --- redbot/__main__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/redbot/__main__.py b/redbot/__main__.py index 60e2cd7fb..ad9248491 100644 --- a/redbot/__main__.py +++ b/redbot/__main__.py @@ -164,7 +164,6 @@ def main(): sentry_log.critical("Fatal Exception", exc_info=e) loop.run_until_complete(red.logout()) finally: - red.rpc.close() if cleanup_tasks: pending = asyncio.Task.all_tasks(loop=red.loop) gathered = asyncio.gather(*pending, loop=red.loop, return_exceptions=True)