From 8e9296702acc4983cbe9258bab06652351d143f3 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Thu, 27 Aug 2015 13:02:11 -0400 Subject: [PATCH] Issue #24790: correct typo noticed by Eric Smith --- Lib/idlelib/StackViewer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/StackViewer.py b/Lib/idlelib/StackViewer.py index e62e6f5586d..ccc755ce31b 100644 --- a/Lib/idlelib/StackViewer.py +++ b/Lib/idlelib/StackViewer.py @@ -120,7 +120,7 @@ class VariablesTreeItem(ObjectTreeItem): sublist.append(item) return sublist - def keys(self): # unused, left for possible 3rd parcy use + def keys(self): # unused, left for possible 3rd party use return list(self.object.keys()) def _stack_viewer(parent):