diff options
author | Guido van Rossum <guido@python.org> | 2000-02-29 13:00:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-29 13:00:16 (GMT) |
commit | 67dd17f730000cc369c8d48e747c1cf2af10c381 (patch) | |
tree | 79ca550400e8065bc998cfdd33dd66b70c098067 | |
parent | 15861b2a41e7bfc3a244409fe7bb9ede31233452 (diff) | |
download | cpython-67dd17f730000cc369c8d48e747c1cf2af10c381.zip cpython-67dd17f730000cc369c8d48e747c1cf2af10c381.tar.gz cpython-67dd17f730000cc369c8d48e747c1cf2af10c381.tar.bz2 |
Fix multi-arg append().
-rwxr-xr-x | Tools/scripts/mailerdaemon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/mailerdaemon.py b/Tools/scripts/mailerdaemon.py index 5ebe18b..4a0669a 100755 --- a/Tools/scripts/mailerdaemon.py +++ b/Tools/scripts/mailerdaemon.py @@ -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) |