mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
Fix multi-arg list.append() calls.
This commit is contained in:
parent
215193bd93
commit
9c2c1e88a3
14 changed files with 27 additions and 27 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue