--- a/eric6/PluginManager/PluginExceptions.py Sat Aug 31 12:29:57 2019 +0200 +++ b/eric6/PluginManager/PluginExceptions.py Sat Aug 31 12:58:11 2019 +0200 @@ -143,21 +143,3 @@ "PluginError", "The plugin class {0} of module {1} is missing {2}.")\ .format(class_, name, missing) - - -class PluginPy2IncompatibleError(PluginError): - """ - Class defining an error raised, when the plugin is incompatible - with Python2. - """ - def __init__(self, name): - """ - Constructor - - @param name name of the plugin module (string) - """ - self._errorMessage = \ - QCoreApplication.translate( - "PluginError", - "The plugin module {0} is not compatible with Python2.")\ - .format(name)