eric6/DebugClients/Python/DebugVariables.py

changeset 8205
4a0f1f896341
parent 7988
c4c17121eff8
child 8207
d359172d11be
--- a/eric6/DebugClients/Python/DebugVariables.py	Thu Apr 08 17:27:12 2021 +0200
+++ b/eric6/DebugClients/Python/DebugVariables.py	Thu Apr 08 18:27:47 2021 +0200
@@ -489,7 +489,7 @@
                 return getattr(var, attribute, None)
         
         expectedID = int(attribute.split(" (ID:")[-1][:-1])
-        for key in var.keys():
+        for key in var:
             if id(key) == expectedID:
                 return var.getlist(key)
         

eric ide

mercurial