Assistant: fixed a type causing an exception. eric7

Sat, 29 May 2021 17:55:52 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 29 May 2021 17:55:52 +0200
branch
eric7
changeset 182
0df33a07a6c8
parent 181
3d13520e1221
child 183
71518ca8692d

Assistant: fixed a type causing an exception.

AssistantEric/Assistant.py file | annotate | diff | comparison | revisions
ChangeLog file | annotate | diff | comparison | revisions
PluginAssistantEric.py file | annotate | diff | comparison | revisions
PluginAssistantEric.zip file | annotate | diff | comparison | revisions
--- a/AssistantEric/Assistant.py	Tue May 25 18:05:12 2021 +0200
+++ b/AssistantEric/Assistant.py	Sat May 29 17:55:52 2021 +0200
@@ -478,7 +478,7 @@
                                 regexp = re.compile(
                                     re.escape(entry) + r"\?\d{,2}")
                                 for comp in completionsList:
-                                    if regexp.fullmatchS(comp):
+                                    if regexp.fullmatch(comp):
                                         cont = True
                                         break
                                 if cont:
--- a/ChangeLog	Tue May 25 18:05:12 2021 +0200
+++ b/ChangeLog	Sat May 29 17:55:52 2021 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 1.0.1:
+- bug fixes
+
 Version 1.0.0:
 - first release of the eric7 variant
 
--- a/PluginAssistantEric.py	Tue May 25 18:05:12 2021 +0200
+++ b/PluginAssistantEric.py	Sat May 29 17:55:52 2021 +0200
@@ -22,7 +22,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "1.0.0"
+version = "1.0.1"
 className = "AssistantEricPlugin"
 packageName = "AssistantEric"
 shortDescription = "Alternative autocompletion and calltips provider."
Binary file PluginAssistantEric.zip has changed

eric ide

mercurial