mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Fix multi-arg append().
This commit is contained in:
parent
15861b2a41
commit
67dd17f730
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ def parsedir(dir, modify):
|
|||
print '--------------'
|
||||
list = []
|
||||
for e in errordict.keys():
|
||||
list.append(errordict[e], errorfirst[e], errorlast[e], e)
|
||||
list.append((errordict[e], errorfirst[e], errorlast[e], e))
|
||||
list.sort()
|
||||
for num, first, last, e in list:
|
||||
print '%d %s - %s\t%s' % (num, first, last, e)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue