summaryrefslogtreecommitdiff
path: root/src/mailman/commands/join.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-02-09 22:19:18 -0500
committerBarry Warsaw2009-02-09 22:19:18 -0500
commit98c52ea14883f0261fd7a2f2fe8db42d96331ddb (patch)
treea0c5817f4c226ed14b3fe510314e825980b6cb4e /src/mailman/commands/join.py
parent84a81e4a90349f7116863d2f45cda1ee31b5b3b5 (diff)
downloadmailman-98c52ea14883f0261fd7a2f2fe8db42d96331ddb.tar.gz
mailman-98c52ea14883f0261fd7a2f2fe8db42d96331ddb.tar.zst
mailman-98c52ea14883f0261fd7a2f2fe8db42d96331ddb.zip
Diffstat (limited to 'src/mailman/commands/join.py')
-rw-r--r--src/mailman/commands/join.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/commands/join.py b/src/mailman/commands/join.py
index c14f3142b..81a018cff 100644
--- a/src/mailman/commands/join.py
+++ b/src/mailman/commands/join.py
@@ -61,7 +61,7 @@ example:
real_name, address = parseaddr(msg['from'])
# Address could be None or the empty string.
if not address:
- address = msg.get_sender()
+ address = msg.sender
if not address:
print >> results, _(
'$self.name: No valid address found to subscribe')