diff options
| author | bwarsaw | 2000-06-20 05:43:19 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-06-20 05:43:19 +0000 |
| commit | 80e9bca88f2cc4e52df8bc1df8b667e94728aeef (patch) | |
| tree | 5f8fa1b624917b5ff92bf655ac29a4545cc5e996 /Mailman/Handlers/ToUsenet.py | |
| parent | 7488da453cb8f2490074ba78a656d0618c0249ce (diff) | |
| download | mailman-80e9bca88f2cc4e52df8bc1df8b667e94728aeef.tar.gz mailman-80e9bca88f2cc4e52df8bc1df8b667e94728aeef.tar.zst mailman-80e9bca88f2cc4e52df8bc1df8b667e94728aeef.zip | |
Diffstat (limited to 'Mailman/Handlers/ToUsenet.py')
| -rw-r--r-- | Mailman/Handlers/ToUsenet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Handlers/ToUsenet.py b/Mailman/Handlers/ToUsenet.py index c05f75c43..f0f88bedb 100644 --- a/Mailman/Handlers/ToUsenet.py +++ b/Mailman/Handlers/ToUsenet.py @@ -50,9 +50,9 @@ def process(mlist, msg, msgdata): # In the parent. This is a bit of a kludge to keep a list of the # children that need to be waited on. We want to be sure to do the # waiting while the list is unlocked! - kids = msgdata.get('kids', {}) + kids = msgdata.get('_kids', {}) kids[pid] = pid - msgdata['kids'] = kids + msgdata['_kids'] = kids else: do_child(mlist, msg) |
