Fixed an issue where the APIManager wasn't reacting to Python2 types.

Mon, 10 Jan 2011 16:48:03 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 10 Jan 2011 16:48:03 +0100
changeset 26
b48e3ff07482
parent 25
6a68405feb84
child 27
ec054e3b5fec

Fixed an issue where the APIManager wasn't reacting to Python2 types.

AssistantEric/APIsManager.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/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."
Binary file PluginAssistantEric.zip has changed

eric ide

mercurial