From f490afa5dc12c43ea8f97c381a526ea3f74abf61 Mon Sep 17 00:00:00 2001 From: Matt Gardner Date: Mon, 7 Aug 2017 22:46:42 -0400 Subject: [PATCH] Fixed ExponentialBackoff not working when integral --- discord/backoff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/backoff.py b/discord/backoff.py index bfe87b17b..3fa52d9fe 100644 --- a/discord/backoff.py +++ b/discord/backoff.py @@ -61,7 +61,7 @@ class ExponentialBackoff: rand = random.Random() rand.seed() - self._randfunc = rand.rand_range if integral else rand.uniform + self._randfunc = rand.randrange if integral else rand.uniform def delay(self): """Compute the next delay