python-utilitybelt
python-utilitybelt copied to clipboard
bug in entropy.py
In Windows, I get:
hexlify(dev_random_entropy(32)) Traceback (most recent call last): File "
", line 1, in File "c:\Python27\lib\site-packages\utilitybelt-0.2.2-py2.7.egg return get_devurandom_entropy(numbytes) NameError: global name 'get_devurandom_entropy' is not defined
Should it be the below instead?
return dev_urandom_entropy(numbytes)
This fixed it for me.
Thank you! This should be addressed now. Can you please confirm? If so I'll close.