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/stdwin/ibrowse/ibrowse.py b/Demo/stdwin/ibrowse/ibrowse.py index 41574ad..eec5eb7 100755 --- a/Demo/stdwin/ibrowse/ibrowse.py +++ b/Demo/stdwin/ibrowse/ibrowse.py
@@ -489,7 +489,7 @@ # if win.file and win.node: lastnode = '(' + win.file + ')' + win.node - win.last.append(lastnode, win.textobj.getfocus()) + win.last.append((lastnode, win.textobj.getfocus())) win.file = file win.node = node win.header = header