diff -r 763ef93fabee -r b3592afc8718 RefactoringRope/CodeAssistServer.py --- a/RefactoringRope/CodeAssistServer.py Mon Oct 16 19:06:30 2017 +0200 +++ b/RefactoringRope/CodeAssistServer.py Mon Oct 16 19:54:41 2017 +0200 @@ -519,7 +519,8 @@ try: self.__documentationViewer = self.__ui.documentationViewer() self.__documentationViewer.registerProvider( - "rope", self.tr("Rope"), self.requestCodeDocumentation) + "rope", self.tr("Rope"), self.requestCodeDocumentation, + self.isSupportedLanguage) except AttributeError: # eric6 before 17.11 doesn't have this pass @@ -614,5 +615,3 @@ @type QScintilla.Editor.Editor """ editor.removeCallTipHook("rope") - - # TODO: add method to edit the codeassist python2 and 3 config files