--- a/QScintilla/Lexers/LexerTCL.py Sun Apr 13 15:45:57 2014 +0200 +++ b/QScintilla/Lexers/LexerTCL.py Tue Apr 15 22:41:08 2014 +0200 @@ -16,7 +16,7 @@ import Preferences -class LexerTCL(QsciLexerTCL, Lexer): +class LexerTCL(Lexer, QsciLexerTCL): """ Subclass to implement some additional lexer dependant methods. """ @@ -26,7 +26,7 @@ @param parent parent widget of this lexer """ - super(LexerTCL, self).__init__(parent) + QsciLexerTCL.__init__(self, parent) Lexer.__init__(self) self.commentString = "#"