Drop using the __status__ variable

This commit is contained in:
Veronica K. B. Olsen
2021-02-07 21:12:31 +01:00
parent 4b885a6e30
commit b3fb020dfa
2 changed files with 5 additions and 8 deletions
+2 -2
View File
@@ -646,7 +646,7 @@ def winInstall():
"""Will attempt to install icons and make a launcher for Windows.
"""
import winreg
from nw import __version__, __status__
from nw import __version__, __hexversion__
try:
import win32com.client
except ImportError:
@@ -662,7 +662,7 @@ def winInstall():
print("===============")
print("")
nwTesting = not __status__.lower().startswith("stable")
nwTesting = not __hexversion__[-2] == "f"
wShell = win32com.client.Dispatch("WScript.Shell")
if nwTesting: