diff options
-rw-r--r-- | Lib/lib-tk/Tkinter.py | 2 | ||||
-rwxr-xr-x | Lib/tkinter/Tkinter.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index e33c8c8..cc2316e 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -167,7 +167,7 @@ class Misc: self.tk.call('focus', 'none') def focus_get(self): name = self.tk.call('focus') - if name == 'none' or not Name: return None + if name == 'none' or not name: return None return self._nametowidget(name) def tk_focusNext(self): name = self.tk.call('tk_focusNext', self._w) diff --git a/Lib/tkinter/Tkinter.py b/Lib/tkinter/Tkinter.py index e33c8c8..cc2316e 100755 --- a/Lib/tkinter/Tkinter.py +++ b/Lib/tkinter/Tkinter.py @@ -167,7 +167,7 @@ class Misc: self.tk.call('focus', 'none') def focus_get(self): name = self.tk.call('focus') - if name == 'none' or not Name: return None + if name == 'none' or not name: return None return self._nametowidget(name) def tk_focusNext(self): name = self.tk.call('tk_focusNext', self._w) |