Fix multi-arg list.append() calls.

This commit is contained in:
Guido van Rossum 1998-10-08 15:24:48 +00:00
parent 215193bd93
commit 9c2c1e88a3
14 changed files with 27 additions and 27 deletions

View file

@ -168,7 +168,7 @@ class NFSClient(UDPClient):
entries, eof = rest
last_cookie = None
for fileid, name, cookie in entries:
list.append(fileid, name)
list.append((fileid, name))
last_cookie = cookie
if eof or last_cookie == None:
break