Fixed an issue in the Python2 debug client reporting the wrong language.

Tue, 25 Mar 2014 19:25:11 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 25 Mar 2014 19:25:11 +0100
changeset 3429
4c81e9536ebc
parent 3427
fa382f1d4793
child 3431
9f6991decc43

Fixed an issue in the Python2 debug client reporting the wrong language.

DebugClients/Python/DebugClientBase.py file | annotate | diff | comparison | revisions
--- a/DebugClients/Python/DebugClientBase.py	Tue Mar 25 19:01:18 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

eric ide

mercurial