--- a/Preferences/PreferencesLexer.py Fri Oct 18 23:00:41 2013 +0200 +++ b/Preferences/PreferencesLexer.py Fri Nov 01 15:48:48 2013 +0100 @@ -24,9 +24,9 @@ """ Constructor """ - self._errorMessage = \ - QApplication.translate("PreferencesLexerError", - "Unspecific PreferencesLexer error.") + self._errorMessage = QApplication.translate( + "PreferencesLexerError", + "Unspecific PreferencesLexer error.") def __repr__(self): """ @@ -56,9 +56,9 @@ @param language lexer language (string) """ PreferencesLexerError.__init__(self) - self._errorMessage = \ - QApplication.translate("PreferencesLexerError", - 'Unsupported Lexer Language: {0}').format(language) + self._errorMessage = QApplication.translate( + "PreferencesLexerError", + 'Unsupported Lexer Language: {0}').format(language) class PreferencesLexer(QsciLexer):