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