Sun, 20 Oct 2024 18:48:08 +0200
Fixed an issue related to 'eric-ide' server use.
--- a/ChangeLog Sun Oct 13 15:50:11 2024 +0200 +++ b/ChangeLog Sun Oct 20 18:48:08 2024 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 10.7.2 +- adjusted code for eric7 24.11 and newer + Version 10.7.1 - bug fixes
--- a/PluginRefactoringRope.py Sun Oct 13 15:50:11 2024 +0200 +++ b/PluginRefactoringRope.py Sun Oct 20 18:48:08 2024 +0200 @@ -26,7 +26,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "10.7.1" +version = "10.7.2" className = "RefactoringRopePlugin" packageName = "RefactoringRope" shortDescription = "Refactoring and Code Assist using the Rope library."
--- a/RefactoringRope/RopeUtilities.py Sun Oct 13 15:50:11 2024 +0200 +++ b/RefactoringRope/RopeUtilities.py Sun Oct 20 18:48:08 2024 +0200 @@ -21,4 +21,4 @@ @return flag indicating a remote file name @rtype bool """ - return fileName.startswith(("remote:", "remote#")) + return fileName.startswith(("remote::", "remote#", "remote:"))