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