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