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