Skip to content

Commit 30910df

Browse files
committedFeb 15, 2016
Partially revert fa40e78
It failed to load functional plugins also
1 parent 8a3e943 commit 30910df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/pyplugin_installer/installer_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -696,8 +696,8 @@ def getAllInstalled(self, testLoad=True):
696696
# readOnly = not QFileInfo(pluginsPath).isWritable() # On windows testing the writable status isn't reliable.
697697
readOnly = isTheSystemDir # Assume only the system plugins are not writable.
698698
# only test those not yet loaded. Loaded plugins already proved they're o.k.
699-
failedToLoad = settings.value("/PythonPlugins/watchDog/" + key) is not None
700-
testLoadThis = testLoad and key not in qgis.utils.plugins and not failedToLoad
699+
# failedToLoad = settings.value("/PythonPlugins/watchDog/" + key) is not None
700+
testLoadThis = testLoad and key not in qgis.utils.plugins
701701
plugin = self.getInstalledPlugin(key, path=path, readOnly=readOnly, testLoad=testLoadThis)
702702
self.localCache[key] = plugin
703703
if key in self.localCache.keys() and compareVersions(self.localCache[key]["version_installed"], plugin["version_installed"]) == 1:

0 commit comments

Comments
 (0)