Fix typo in remove_subscriber_from

This commit is contained in:
Timothée Floure 2019-02-25 17:38:27 +01:00
parent 056b2dda12
commit 76fda2e3ff
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ def remove_subscriber_from(list_name, list, addr)
# Unsubscribe the address from the list.
mlmmj_unsub_binary = @configuration['mlmmj']['unsub_binary']
`#{mlmmj_unsub_binary} -L #{list} -a #{s} -q -s`
`#{mlmmj_unsub_binary} -L #{list} -a #{addr} -q -s`
if $CHILD_STATUS.exitstatus.zero?
puts 'OK'
else