diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,9 +10,9 @@ Update your winreg imports with this ```py try: - import winreg + import winreg except ImportError: - import unixreg as winreg + import unixreg as winreg ``` simply importing unixreg should be enough though, winreg is imported if found |