Little change to the Python version check.

Sun, 21 Jan 2018 17:01:12 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 21 Jan 2018 17:01:12 +0100
changeset 11
14555b50b6c0
parent 10
2344d6ab4623
child 12
1492fbafd273

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()

eric ide

mercurial