Sun, 04 Sep 2016 14:34:56 +0200
Fixed an issue in the install scripts caused by the renaming of the Python 2 debugger package.
install-debugclients.py | file | annotate | diff | comparison | revisions | |
install.py | file | annotate | diff | comparison | revisions |
--- a/install-debugclients.py Sun Sep 04 13:58:11 2016 +0200 +++ b/install-debugclients.py Sun Sep 04 14:34:56 2016 +0200 @@ -308,7 +308,7 @@ if doCompile: print("\nCompiling source files ...") if sys.version_info[0] == 3: - skipRe = re.compile(r"DebugClients[\\/]Python[\\/]") + skipRe = re.compile(r"DebugClients[\\/]Python2[\\/]") else: skipRe = re.compile(r"DebugClients[\\/]Python3[\\/]") # Hide compile errors (mainly because of Py2/Py3 differences)
--- a/install.py Sun Sep 04 13:58:11 2016 +0200 +++ b/install.py Sun Sep 04 14:34:56 2016 +0200 @@ -1485,7 +1485,7 @@ if doCompile: print("\nCompiling source files ...") if sys.version_info[0] == 3: - skipRe = re.compile(r"DebugClients[\\/]Python[\\/]") + skipRe = re.compile(r"DebugClients[\\/]Python2[\\/]") else: skipRe = re.compile(r"DebugClients[\\/]Python3[\\/]") # Hide compile errors (mainly because of Py2/Py3 differences)