diff options
Diffstat (limited to 'Lib/tkinter/tkCommonDialog.py')
-rw-r--r-- | Lib/tkinter/tkCommonDialog.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/tkinter/tkCommonDialog.py b/Lib/tkinter/tkCommonDialog.py index 33126c5..df26272 100644 --- a/Lib/tkinter/tkCommonDialog.py +++ b/Lib/tkinter/tkCommonDialog.py @@ -42,7 +42,7 @@ class Dialog: self._fixoptions() - # we need a stub widget to properly process the options + # we need a dummy widget to properly process the options # (at least as long as we use Tkinter 1.63) w = Frame(self.master) @@ -61,3 +61,4 @@ class Dialog: pass return s + |