AssistantEric/APIsManager.py

changeset 21
0e54b870314c
parent 20
3338ae0c05a9
child 22
a47afbacaeb5
diff -r 3338ae0c05a9 -r 0e54b870314c AssistantEric/APIsManager.py
--- a/AssistantEric/APIsManager.py	Wed Dec 22 10:24:44 2010 +0100
+++ b/AssistantEric/APIsManager.py	Wed Dec 22 10:31:26 2010 +0100
@@ -273,7 +273,6 @@
         
         @param apiFile filename of the raw API file (string)
         """
-        print("__deleteApiFile", apiFile)
         db = QSqlDatabase.database(self.__language)
         db.transaction()
         try:
@@ -303,14 +302,12 @@
         """
         Public method to perform the threads work.
         """
-        print(sorted(self.__apiFiles))
         QCoreApplication.postEvent(self.__proxy, QEvent(QEvent.Type(WorkerStarted)))
         
         db = QSqlDatabase.database(self.__language)
         if db.isValid() and db.isOpen():
             # step 1: remove API files not wanted any longer
             loadedApiFiles = self.__proxy.getApiFiles()
-            print(sorted(loadedApiFiles))
             for apiFile in loadedApiFiles:
                 if not self.__aborted and apiFile not in self.__apiFiles:
                     self.__deleteApiFile(apiFile)
@@ -815,7 +812,6 @@
         """
         Private slot to perform actions after a project has been opened.
         """
-        print("__projectOpened")
         if self.__project.getProjectLanguage() in ["Python", "Python3"]:
             self.__discardFirst = "self"
         else:

eric ide

mercurial