diff options
Diffstat (limited to 'src/mailman/core/switchboard.py')
| -rw-r--r-- | src/mailman/core/switchboard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/core/switchboard.py b/src/mailman/core/switchboard.py index d635a12e9..3375aa1dd 100644 --- a/src/mailman/core/switchboard.py +++ b/src/mailman/core/switchboard.py @@ -134,7 +134,7 @@ class Switchboard: data['version'] = config.QFILE_SCHEMA_VERSION # Filter out volatile entries. Use .keys() so that we can mutate the # dictionary during the iteration. - for k in data.keys(): + for k in list(data): if k.startswith('_'): del data[k] # We have to tell the dequeue() method whether to parse the message |
