Mon, 10 Jan 2011 16:48:03 +0100
Fixed an issue where the APIManager wasn't reacting to Python2 types.
--- a/AssistantEric/APIsManager.py Fri Dec 31 15:51:08 2010 +0100 +++ b/AssistantEric/APIsManager.py Mon Jan 10 16:48:03 2011 +0100 @@ -459,7 +459,7 @@ """ Private method to initialize as a language API object. """ - if self.__language in ["Python", "Python3"]: + if self.__language in ["Python", "Python2", "Python3"]: self.__discardFirst = "self" else: self.__discardFirst = ""
--- a/ChangeLog Fri Dec 31 15:51:08 2010 +0100 +++ b/ChangeLog Mon Jan 10 16:48:03 2011 +0100 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 2.1.2: +- bug fixes + Version 2.1.1: - bug fixes
--- a/PluginAssistantEric.py Fri Dec 31 15:51:08 2010 +0100 +++ b/PluginAssistantEric.py Mon Jan 10 16:48:03 2011 +0100 @@ -23,7 +23,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "2.1.1" +version = "2.1.2" className = "AssistantEricPlugin" packageName = "AssistantEric" shortDescription = "Alternative autocompletion and calltips provider."