From 91c1e3818e64468594a2c2f106d43d4fdba8717c Mon Sep 17 00:00:00 2001 From: j Date: Sun, 20 Jan 2019 16:51:57 +0530 Subject: [PATCH] fix winrandom import --- Lib/site-packages/Crypto/Random/OSRNG/nt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/site-packages/Crypto/Random/OSRNG/nt.py b/Lib/site-packages/Crypto/Random/OSRNG/nt.py index 849457d..b7e8448 100644 --- a/Lib/site-packages/Crypto/Random/OSRNG/nt.py +++ b/Lib/site-packages/Crypto/Random/OSRNG/nt.py @@ -25,7 +25,7 @@ __revision__ = "$Id$" __all__ = ['WindowsRNG'] -import winrandom +from . import winrandom from .rng_base import BaseRNG class WindowsRNG(BaseRNG):