eric6/Debugger/DebugUI.py

changeset 7635
0cdead130a81
parent 7533
88261c96484b
child 7646
39e3db2b4936
child 7707
6abcf4275d0e
equal deleted inserted replaced
7634:8c3d033e5044 7635:0cdead130a81
826 exts = self.debugServer.getExtensions(language) 826 exts = self.debugServer.getExtensions(language)
827 if fn.endswith(exts): 827 if fn.endswith(exts):
828 cap = self.debugServer.getClientCapabilities(language) 828 cap = self.debugServer.getClientCapabilities(language)
829 break 829 break
830 else: 830 else:
831 if editor.isPy2File(): 831 if editor.isPy3File():
832 cap = self.debugServer.getClientCapabilities('Python2')
833 elif editor.isPy3File():
834 cap = self.debugServer.getClientCapabilities('Python3') 832 cap = self.debugServer.getClientCapabilities('Python3')
835 elif editor.isRubyFile(): 833 elif editor.isRubyFile():
836 cap = self.debugServer.getClientCapabilities('Ruby') 834 cap = self.debugServer.getClientCapabilities('Ruby')
837 835
838 if not self.passive: 836 if not self.passive:

eric ide

mercurial