diff -r 866adc8c315b -r 0acf98cd089a eric6/PluginManager/PluginManager.py --- a/eric6/PluginManager/PluginManager.py Sun Jan 17 13:53:08 2021 +0100 +++ b/eric6/PluginManager/PluginManager.py Mon Feb 01 10:38:16 2021 +0100 @@ -594,7 +594,7 @@ Public method to activate a plugin. @param name name of the module to be activated - @keyparam onDemand flag indicating activation of an + @param onDemand flag indicating activation of an on demand plugin (boolean) @return reference to the initialized plugin object @exception PluginActivationError raised to indicate an issue during the @@ -710,7 +710,7 @@ Public method to deactivate a plugin. @param name name of the module to be deactivated - @keyparam onDemand flag indicating deactivation of an + @param onDemand flag indicating deactivation of an on demand plugin (boolean) """ try: @@ -763,7 +763,7 @@ @param type_ type of the plugin to be activated (string) @param typename name of the plugin within the type category (string) - @keyparam maybeActive flag indicating, that the plugin may be active + @param maybeActive flag indicating, that the plugin may be active already (boolean) @return reference to the initialized plugin object """ @@ -1246,7 +1246,7 @@ Public method to check the availability of updates of plug-ins. """ period = Preferences.getPluginManager("UpdatesCheckInterval") - if period == 0 or not self.__ui.isOnline(): + if period == 0: return elif period in [1, 2, 3]: lastModified = QFileInfo(self.pluginRepositoryFile).lastModified()