Skip to content

Commit

Permalink
Editor: Fix error when trying to get completions with Rope
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Oct 11, 2015
1 parent 3a5b2db commit 4b51335
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion spyderlib/utils/introspection/rope_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,10 @@ def get_definition(self, info):
def validate(self):
"""Validate the Rope project"""
if self.project is not None:
self.project.validate(self.project.root)
try:
self.project.validate(self.project.root)
except RuntimeError:
pass

def set_pref(self, key, value):
"""Set a Rope preference"""
Expand Down

0 comments on commit 4b51335

Please sign in to comment.