Skip to content

Commit

Permalink
Fix: Compatibility with spyderlib 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rproepp committed Sep 1, 2014
1 parent eab60cb commit 5ff3e4d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion spykeviewer/ui/plugin_editor_dock.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
from spyderlib.utils.module_completion import moduleCompletion \
as module_completion
except ImportError: # Spyder >= 2.2.0beta3
from spyderlib.utils.module_completion import module_completion
try:
from spyderlib.utils.module_completion import module_completion
except ImportError: # Spyder >= 2.3.0
from spyderlib.utils.introspection.module_completion import \
module_completion

from spyderlib.utils.dochelpers import getsignaturesfromtext
from spyderlib.widgets.findreplace import FindReplace

Expand Down

0 comments on commit 5ff3e4d

Please sign in to comment.