Fix Windows issue if no exception

This commit is contained in:
James R. Barlow
2022-06-13 01:46:59 -07:00
parent ef43d7e016
commit d8753dc790
-1
View File
@@ -21,7 +21,6 @@ try:
import winreg
except ModuleNotFoundError as _notfound_ex:
raise ModuleNotFoundError("This module is for Windows only") from _notfound_ex
del _notfound_ex
log = logging.getLogger(__name__)