diff options
Diffstat (limited to 'Lib/whrandom.py')
-rw-r--r-- | Lib/whrandom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/whrandom.py b/Lib/whrandom.py index 662390483a..0a346903c8 100644 --- a/Lib/whrandom.py +++ b/Lib/whrandom.py @@ -39,7 +39,7 @@ class whrandom: if not xyz: # Initialize from current time import time - t = time.time() + t = int(time.time()) t, x = divmod(t, 256) t, y = divmod(t, 256) t, z = divmod(t, 256) |