Fixed an issue related to 'eric-ide' server use. eric7 release-10.7.2

Sun, 20 Oct 2024 18:48:08 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 20 Oct 2024 18:48:08 +0200
branch
eric7
changeset 418
5890e221df60
parent 417
6572bfd7aff6
child 419
78a87fd0c83e

Fixed an issue related to 'eric-ide' server use.

ChangeLog file | annotate | diff | comparison | revisions
PluginRefactoringRope.py file | annotate | diff | comparison | revisions
PluginRefactoringRope.zip file | annotate | diff | comparison | revisions
RefactoringRope/RopeUtilities.py file | annotate | diff | comparison | revisions
--- 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."
Binary file PluginRefactoringRope.zip has changed
--- 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:"))

eric ide

mercurial