diff options
Diffstat (limited to 'src/mailman/commands/cli_withlist.py')
| -rw-r--r-- | src/mailman/commands/cli_withlist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/commands/cli_withlist.py b/src/mailman/commands/cli_withlist.py index 3b1b36b1a..55d9ff5ec 100644 --- a/src/mailman/commands/cli_withlist.py +++ b/src/mailman/commands/cli_withlist.py @@ -230,8 +230,8 @@ As another example, say you wanted to change the display name for a particular mailing list. You could put the following function in a file called 'change.pw': - def change(mlist, real_name): - mlist.real_name = real_name + def change(mlist, display_name): + mlist.display_name = display_name # Required to save changes to the database. commit() |
