--- a/QScintilla/Lexers/LexerTCL.py Tue Apr 01 19:22:33 2014 +0200 +++ b/QScintilla/Lexers/LexerTCL.py Tue Apr 01 19:37:13 2014 +0200 @@ -14,7 +14,7 @@ import Preferences -class LexerTCL(QsciLexerTCL, Lexer): +class LexerTCL(Lexer, QsciLexerTCL): """ Subclass to implement some additional lexer dependant methods. """ @@ -24,7 +24,7 @@ @param parent parent widget of this lexer """ - super().__init__(parent) + QsciLexerTCL.__init__(self, parent) Lexer.__init__(self) self.commentString = "#"