Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pylsp/plugins/jedi_rename.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def pylsp_rename(config, workspace, document, position, new_name):
except NotImplementedError as exc:
raise Exception(
"No support for renaming in Python 2/3.5 with Jedi. "
"Consider using the rope_rename plugin instead"
"Consider using the pylsp-rope plugin instead"
) from exc
log.debug("Finished rename: %s", refactoring.get_diff())
changes = []
Expand Down
66 changes: 0 additions & 66 deletions pylsp/plugins/rope_rename.py

This file was deleted.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ pydocstyle = "pylsp.plugins.pydocstyle_lint"
pyflakes = "pylsp.plugins.pyflakes_lint"
pylint = "pylsp.plugins.pylint_lint"
rope_completion = "pylsp.plugins.rope_completion"
rope_rename = "pylsp.plugins.rope_rename"
rope_autoimport = "pylsp.plugins.rope_autoimport"
yapf = "pylsp.plugins.yapf_format"

Expand Down
73 changes: 0 additions & 73 deletions test/plugins/test_rope_rename.py

This file was deleted.