From 58eb11cf62dd04ccc2c364b62fd51b4265e2e203 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 18 Jan 2004 20:29:55 +0000 Subject: Whitespace normalization. --- Lib/random.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/random.py') diff --git a/Lib/random.py b/Lib/random.py index 1f279bb878..a2415ae6bd 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -177,7 +177,7 @@ class Random(_random.Random): # compatibility). if width >= maxwidth: - return int(istart + self._randbelow(width)) + return int(istart + self._randbelow(width)) return int(istart + int(self.random()*width)) if step == 1: raise ValueError, "empty range for randrange() (%d,%d, %d)" % (istart, istop, width) -- cgit v1.2.1