diff options
author | Guido van Rossum <guido@python.org> | 1998-02-24 23:26:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-02-24 23:26:18 (GMT) |
commit | 21df8f5dc49a9f912b9c972ada4557163773c56e (patch) | |
tree | 407d96e1962e3cb0e67bc8cd05e3afbe16676911 /Lib | |
parent | d10d0faaa58129759fb80864d25928e4ea3ce84a (diff) | |
download | cpython-21df8f5dc49a9f912b9c972ada4557163773c56e.zip cpython-21df8f5dc49a9f912b9c972ada4557163773c56e.tar.gz cpython-21df8f5dc49a9f912b9c972ada4557163773c56e.tar.bz2 |
Typo: baseWidht -> baseWidth.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/lib-tk/Tkinter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 5d89892..8b3b1e6 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -763,7 +763,7 @@ class Wm: def geometry(self, newGeometry=None): return self.tk.call('wm', 'geometry', self._w, newGeometry) def grid(self, - baseWidht=None, baseHeight=None, + baseWidth=None, baseHeight=None, widthInc=None, heightInc=None): return self._getints(self.tk.call( 'wm', 'grid', self._w, |