Sun, 21 Jan 2018 17:01:12 +0100
Little change to the Python version check.
PluginPyInstaller.py | file | annotate | diff | comparison | revisions |
--- a/PluginPyInstaller.py Sun Jan 21 16:43:15 2018 +0100 +++ b/PluginPyInstaller.py Sun Jan 21 17:01:12 2018 +0100 @@ -199,7 +199,7 @@ versionStr = str(versionBytes, encoding='utf-8').strip() if versionStr == "3": _exePy3.add(exe) - else: + elif versionStr == "2": _exePy2.add(exe) finally: f.close()