Tue, 25 Mar 2014 19:25:11 +0100
Fixed an issue in the Python2 debug client reporting the wrong language.
(grafted from 4c81e9536ebcc508e9ffe4ebc45ef04d5a684640)
DebugClients/Python/DebugClientBase.py | file | annotate | diff | comparison | revisions |
--- a/DebugClients/Python/DebugClientBase.py Tue Mar 25 19:02:57 2014 +0100 +++ b/DebugClients/Python/DebugClientBase.py Tue Mar 25 19:25:11 2014 +0100 @@ -822,7 +822,7 @@ return if cmd == DebugProtocol.RequestCapabilities: - self.write('%s%d, "Python"\n' % ( + self.write('%s%d, "Python2"\n' % ( DebugProtocol.ResponseCapabilities, self.__clientCapabilities())) return