Fix multi-arg append().
This commit is contained in:
parent
15861b2a41
commit
67dd17f730
|
@ -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…
Reference in New Issue