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