--- a/eric6/QScintilla/TypingCompleters/__init__.py Sat Jun 20 17:36:20 2020 +0200 +++ b/eric6/QScintilla/TypingCompleters/__init__.py Sun Jun 21 18:26:12 2020 +0200 @@ -18,7 +18,7 @@ @return reference to the instanciated lexer object (QsciLexer) """ try: - if language in ["Python", "Python2", "Python3", "MicroPython"]: + if language in ["Python", "Python3", "MicroPython"]: from .CompleterPython import CompleterPython return CompleterPython(editor, parent) elif language == "Ruby":