diff options
| author | bwarsaw | 2000-07-24 21:44:56 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-07-24 21:44:56 +0000 |
| commit | d13b8618110e372e4ed4f3e7ba58f31eea470d3d (patch) | |
| tree | 7ef84293ef0c797ed35ffb2be69f70ee6411e00f | |
| parent | d3b222c6ef5ffb12379a9776d8b33e76117a4d71 (diff) | |
| download | mailman-d13b8618110e372e4ed4f3e7ba58f31eea470d3d.tar.gz mailman-d13b8618110e372e4ed4f3e7ba58f31eea470d3d.tar.zst mailman-d13b8618110e372e4ed4f3e7ba58f31eea470d3d.zip | |
do_output(): Needed to add `autoreply' category to get the
Autoresponse config variables to dump. Also, massage FileUpload type
vars the same way that Text vars are processed.
Diffstat (limited to '')
| -rw-r--r-- | bin/config_list | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/config_list b/bin/config_list index b5b255709..ca7946ad1 100644 --- a/bin/config_list +++ b/bin/config_list @@ -126,7 +126,7 @@ def do_output(listname, outfile): print '#', line # munge the value based on its type value = getattr(mlist, varname) - if vtype == mm_cfg.Text: + if vtype in (mm_cfg.Text, mm_cfg.FileUpload): print varname, '=', lines = string.split(string.replace(value, '\r', ''), '\n') if len(lines) == 1: |
