diff -r 960850ec284c -r a22eee00b052 eric6/Debugger/DebugServer.py --- a/eric6/Debugger/DebugServer.py Sat Aug 31 12:29:57 2019 +0200 +++ b/eric6/Debugger/DebugServer.py Sat Aug 31 12:58:11 2019 +0200 @@ -8,10 +8,6 @@ """ from __future__ import unicode_literals -try: - str = unicode -except NameError: - pass import os import sys @@ -220,10 +216,7 @@ self.clientType = \ Preferences.Prefs.settings.value('DebugClient/Type') if self.clientType is None: - if sys.version_info[0] == 2: - self.clientType = 'Python2' - else: - self.clientType = 'Python3' + self.clientType = 'Python3' # Change clientType if dependent interpreter does not exist anymore # (maybe deinstalled,...) elif self.clientType == 'Python2' and Preferences.getDebugger(