diff options
| author | Rapptz <[email protected]> | 2017-01-08 02:08:38 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-01-08 02:08:38 -0500 |
| commit | 93d267cd2b89d1dec04cc4aed955d0bba859a941 (patch) | |
| tree | 09b2f712c77129d3b058b1944dcc5eaf13b49f59 | |
| parent | Allow overriding the shard_ids used for initial shard launch. (diff) | |
| download | discord.py-93d267cd2b89d1dec04cc4aed955d0bba859a941.tar.xz discord.py-93d267cd2b89d1dec04cc4aed955d0bba859a941.zip | |
Remove extraneous prints.
| -rw-r--r-- | discord/shard.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/discord/shard.py b/discord/shard.py index c15c1ea4..6a447916 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -169,8 +169,6 @@ class AutoShardedClient(Client): try: ws = yield from websockets.connect(gateway, loop=self.loop, klass=DiscordWebSocket) except Exception as e: - import traceback - traceback.print_exc() log.info('Failed to connect for shard_id: %s. Retrying...' % shard_id) yield from asyncio.sleep(5.0, loop=self.loop) yield from self.launch_shard(gateway, shard_id) |