mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +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
|
@ -113,7 +113,7 @@ class Dialog:
|
|||
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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue