You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
else: infoString= (self.tr("Plugin installed successfully"), self.tr("Python plugin installed.\nNow you need to enable it in Plugin Manager."))
604
607
else:
605
608
infoString= (self.tr("Plugin reinstalled successfully"), self.tr("Python plugin reinstalled.\nYou need to restart Quantum GIS in order to reload it."))
606
-
startPlugin(plugin["localdir"])
609
+
try:
610
+
startPlugin(plugin["localdir"])
611
+
except:
612
+
pass
607
613
else:
608
614
ifplugin["error"] =="incompatible":
609
615
message=self.tr("The plugin is designed for a newer version of Quantum GIS. The minimum required version is:")
0 commit comments