Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 67dd17f

Browse files
committed
Fix multi-arg append().
1 parent 15861b2 commit 67dd17f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/scripts/mailerdaemon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def parsedir(dir, modify):
218218
print '--------------'
219219
list = []
220220
for e in errordict.keys():
221-
list.append(errordict[e], errorfirst[e], errorlast[e], e)
221+
list.append((errordict[e], errorfirst[e], errorlast[e], e))
222222
list.sort()
223223
for num, first, last, e in list:
224224
print '%d %s - %s\t%s' % (num, first, last, e)

0 commit comments

Comments
 (0)