diff options
author | Guido van Rossum <guido@python.org> | 1994-07-12 15:55:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-07-12 15:55:43 (GMT) |
commit | 28bb6528872e09e187f1eaadd849913b77501400 (patch) | |
tree | 618d18895bb68194dd56e09bcb4c155b9a1bb6e8 /Demo/tkinter | |
parent | b78e03c23dc0ee1a94fe1e17c4cb196c497d6274 (diff) | |
download | cpython-28bb6528872e09e187f1eaadd849913b77501400.zip cpython-28bb6528872e09e187f1eaadd849913b77501400.tar.gz cpython-28bb6528872e09e187f1eaadd849913b77501400.tar.bz2 |
correct typo
Diffstat (limited to 'Demo/tkinter')
-rwxr-xr-x | Demo/tkinter/guido/AttrDialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/tkinter/guido/AttrDialog.py b/Demo/tkinter/guido/AttrDialog.py index 6ef0c79..d9ad82a 100755 --- a/Demo/tkinter/guido/AttrDialog.py +++ b/Demo/tkinter/guido/AttrDialog.py @@ -256,7 +256,7 @@ class WidgetDialog(Dialog): self.configuration = self.widget.config() self.current = {} self.options = {} - options['.class'] = (None, 'Class') + self.options['.class'] = (None, 'Class') self.current['.class'] = self.widget.winfo_class() for k, v in self.configuration.items(): if len(v) > 4: |