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