diff -r 8c3d033e5044 -r 0cdead130a81 eric6/QScintilla/TypingCompleters/__init__.py --- 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":