QScintilla/Lexers/LexerBatch.py

changeset 3462
6d6e7334a787
parent 3160
209a07d7e401
child 3515
1b8381afe38f
--- 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 "

eric ide

mercurial