summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorklm1998-05-04 17:02:30 +0000
committerklm1998-05-04 17:02:30 +0000
commit3c6cfb87ecb5b2e5ade3d48b1a91c9d99338a3cd (patch)
treefe1a375676654500ff4d6980a0d7645cef5e00c3
parent081e171d848cde1da04ad48e6f2db2b4a1b9fb7b (diff)
downloadmailman-3c6cfb87ecb5b2e5ade3d48b1a91c9d99338a3cd.tar.gz
mailman-3c6cfb87ecb5b2e5ade3d48b1a91c9d99338a3cd.tar.zst
mailman-3c6cfb87ecb5b2e5ade3d48b1a91c9d99338a3cd.zip
Added missing space to end of initial list password prompt.
-rwxr-xr-xbin/newlist4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/newlist b/bin/newlist
index c5b0c825f..57f271596 100755
--- a/bin/newlist
+++ b/bin/newlist
@@ -10,7 +10,7 @@ immediately. Otherwise, the script hangs pending input, to give time for
the person creating the list to customize it before sending the admin an
email notice about the existence of the new list."""
-__version__ = "$Revision: 382 $"
+__version__ = "$Revision: 512 $"
# $Source$
ADDALIASES_CMD = '/home/mailman/mailman/bin/addaliases'
@@ -39,7 +39,7 @@ def main(argv):
if len(argv) > 3:
list_pw = argv[3]
else:
- list_pw = raw_input("Enter the initial list password:")
+ list_pw = raw_input("Enter the initial list password: ")
newlist = maillist.MailList()
pw = crypt.crypt(list_pw , mm_utils.GetRandomSeed())