commit | 9c2c1e88a352c947eac2c9eb8b91908f1b5abaad | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Oct 08 15:24:48 1998 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Oct 08 15:24:48 1998 +0000 |
tree | 1409948b07587c6bdecd570b5e41e2eb36d86da1 | |
parent | 215193bd93f898b21ed75befd412095d99dee601 [diff] [blame] |
Fix multi-arg list.append() calls.
diff --git a/Demo/tkinter/guido/AttrDialog.py b/Demo/tkinter/guido/AttrDialog.py index 32b4b7e..4878cb5 100755 --- a/Demo/tkinter/guido/AttrDialog.py +++ b/Demo/tkinter/guido/AttrDialog.py
@@ -113,7 +113,7 @@ self.choices = {} list = [] for k, dc in self.options.items(): - list.append(k, dc) + list.append((k, dc)) list.sort() for k, (d, c) in list: try: