DataViews/PyProfileDialog.py

changeset 12
1d8dd9706f46
parent 0
de9c2efb9d02
child 13
1af94a91f439
--- a/DataViews/PyProfileDialog.py	Fri Jan 01 16:11:36 2010 +0000
+++ b/DataViews/PyProfileDialog.py	Sat Jan 02 15:11:35 2010 +0000
@@ -14,7 +14,7 @@
 from PyQt4.QtCore import *
 from PyQt4.QtGui import *
 
-from Ui_PyProfileDialog import Ui_PyProfileDialog
+from .Ui_PyProfileDialog import Ui_PyProfileDialog
 import Utilities
 
 from eric4config import getConfig
@@ -157,7 +157,7 @@
             self.resultList.setSortingEnabled(False)
             
             # now go through all the files
-            for func, (cc, nc, tt, ct, callers) in self.stats.items():
+            for func, (cc, nc, tt, ct, callers) in list(self.stats.items()):
                 if self.cancelled:
                     return
                 

eric ide

mercurial