Skip to content

Commit

Permalink
Fix: Accomodate name change of spyderlib function in 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rproepp committed Sep 3, 2014
1 parent 9ff2655 commit f7dacf6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion spykeviewer/ui/plugin_editor_dock.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
from spyderlib.utils.introspection.module_completion import \
module_completion

from spyderlib.utils.dochelpers import getsignaturesfromtext
try:
from spyderlib.utils.dochelpers import getsignaturesfromtext
except ImportError: # Spyder >= 2.3.0
from spyderlib.utils.dochelpers import getsignaturefromtext as \
getsignaturesfromtext
from spyderlib.widgets.findreplace import FindReplace


Expand Down

0 comments on commit f7dacf6

Please sign in to comment.