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

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

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 25 Mar 2014 19:25:11 +0100
branch
5_4_x
changeset 3430
8b6a501db77d
parent 3428
164793bf8a62
child 3433
21197826dce1

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

eric ide

mercurial