diff -r f00d825fbdb3 -r d595f6f9cbf8 eric6/PluginManager/PluginExceptions.py --- a/eric6/PluginManager/PluginExceptions.py Sat Sep 21 17:41:22 2019 +0200 +++ b/eric6/PluginManager/PluginExceptions.py Sat Sep 21 18:30:02 2019 +0200 @@ -81,11 +81,10 @@ @param name name of the plugin module (string) """ - self._errorMessage = \ - QCoreApplication.translate( - "PluginError", - "Error loading plugin module: {0}")\ - .format(name) + self._errorMessage = QCoreApplication.translate( + "PluginError", + "Error loading plugin module: {0}" + ).format(name) class PluginActivationError(PluginError): @@ -99,11 +98,10 @@ @param name name of the plugin module (string) """ - self._errorMessage = \ - QCoreApplication.translate( - "PluginError", - "Error activating plugin module: {0}")\ - .format(name) + self._errorMessage = QCoreApplication.translate( + "PluginError", + "Error activating plugin module: {0}" + ).format(name) class PluginModuleFormatError(PluginError): @@ -117,11 +115,10 @@ @param name name of the plugin module (string) @param missing description of the missing element (string) """ - self._errorMessage = \ - QCoreApplication.translate( - "PluginError", - "The plugin module {0} is missing {1}.")\ - .format(name, missing) + self._errorMessage = QCoreApplication.translate( + "PluginError", + "The plugin module {0} is missing {1}." + ).format(name, missing) class PluginClassFormatError(PluginError): @@ -137,8 +134,7 @@ (string) @param missing description of the missing element (string) """ - self._errorMessage = \ - QCoreApplication.translate( - "PluginError", - "The plugin class {0} of module {1} is missing {2}.")\ - .format(class_, name, missing) + self._errorMessage = QCoreApplication.translate( + "PluginError", + "The plugin class {0} of module {1} is missing {2}." + ).format(class_, name, missing)