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