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