diff -r 17c01303a239 -r 67064c71df21 Preferences/PreferencesLexer.py --- a/Preferences/PreferencesLexer.py Tue Oct 15 19:13:32 2013 +0200 +++ b/Preferences/PreferencesLexer.py Wed Oct 16 15:16:54 2013 +0200 @@ -22,9 +22,9 @@ """ Constructor """ - self._errorMessage = \ - QApplication.translate("PreferencesLexerError", - "Unspecific PreferencesLexer error.") + self._errorMessage = QApplication.translate( + "PreferencesLexerError", + "Unspecific PreferencesLexer error.") def __repr__(self): """ @@ -54,9 +54,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):