diff options
| author | bwarsaw | 2000-06-23 08:14:41 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-06-23 08:14:41 +0000 |
| commit | 0d7b9ae5575437a844ab4cd744820039f2ea68fc (patch) | |
| tree | c9e140f374f050457d4e27a3cedcf8a6f6608fd6 | |
| parent | 059ae587e30a7e07e004e6c34ae9c7f6a406931d (diff) | |
| download | mailman-0d7b9ae5575437a844ab4cd744820039f2ea68fc.tar.gz mailman-0d7b9ae5575437a844ab4cd744820039f2ea68fc.tar.zst mailman-0d7b9ae5575437a844ab4cd744820039f2ea68fc.zip | |
do_output(): Skip volatile attributes (i.e. those whose name begins
with an underscore).
| -rw-r--r-- | bin/config_list | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/config_list b/bin/config_list index 1020a1768..bdf152587 100644 --- a/bin/config_list +++ b/bin/config_list @@ -117,6 +117,9 @@ def do_output(listname, outfile): if type(data) <> TupleType: continue varname = data[0] + # Variable could be volatile + if varname[0] == '_': + continue vtype = data[1] desc = Utils.wrap(data[-1]) for line in string.split(desc, '\n'): |
