diff options
| author | Barry Warsaw | 2007-10-10 00:16:12 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2007-10-10 00:16:12 -0400 |
| commit | 15f9e73fdb96a145632e5916cc0073472c014c99 (patch) | |
| tree | d5bf1b81d4945e20586d17a5bd2002c8ce6d986c /Mailman/Commands/cmd_info.py | |
| parent | 28f41bc768390f11cf817534cca67a1683f235a7 (diff) | |
| download | mailman-15f9e73fdb96a145632e5916cc0073472c014c99.tar.gz mailman-15f9e73fdb96a145632e5916cc0073472c014c99.tar.zst mailman-15f9e73fdb96a145632e5916cc0073472c014c99.zip | |
Diffstat (limited to 'Mailman/Commands/cmd_info.py')
| -rw-r--r-- | Mailman/Commands/cmd_info.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/Commands/cmd_info.py b/Mailman/Commands/cmd_info.py index 923f7aec8..cb7834292 100644 --- a/Mailman/Commands/cmd_info.py +++ b/Mailman/Commands/cmd_info.py @@ -37,10 +37,10 @@ def process(res, args): return STOP listname = mlist.real_name description = mlist.description or _('n/a') - postaddr = mlist.GetListEmail() - requestaddr = mlist.GetRequestEmail() - owneraddr = mlist.GetOwnerEmail() - listurl = mlist.GetScriptURL('listinfo', absolute=1) + postaddr = mlist.posting_address + requestaddr = mlist.request_address + owneraddr = mlist.owner_address + listurl = mlist.script_url('listinfo') res.results.append(_('List name: %(listname)s')) res.results.append(_('Description: %(description)s')) res.results.append(_('Postings to: %(postaddr)s')) |
