Sat, 29 May 2021 17:55:52 +0200
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."