Closed sandeepgadhwal closed 7 years ago
Hi Thanks for this PR and pointing out issues with py3 compatibility. I cant accept the PR as is currently, for 2 reasons:
_winreg
to winreg
but none of the references to _winreg
- the library wont work!try:
import winreg as _winreg
except ImportError:
import _winreg
i propose a change in script if we want to use the script in newer version of python where _winreg is changed to winreg. Thank you for this nice script.