Skip to content

Commit

Permalink
Merge from 3.x: PR #4666
Browse files Browse the repository at this point in the history
Fixes #4665
  • Loading branch information
ccordoba12 committed Jun 28, 2017
2 parents 039ee3d + ee494c7 commit 068a525
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spyder/app/mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,8 +910,9 @@ def create_edit_action(text, tr_text, icon):
for mod in get_spyderplugins_mods():
try:
plugin = mod.PLUGIN_CLASS(self)
self.thirdparty_plugins.append(plugin)
plugin.register_plugin()
if plugin.check_compatibility()[0]:
self.thirdparty_plugins.append(plugin)
plugin.register_plugin()
except Exception as error:
print("%s: %s" % (mod, str(error)), file=STDERR)
traceback.print_exc(file=STDERR)
Expand Down

0 comments on commit 068a525

Please sign in to comment.