diff options
Diffstat (limited to 'bin/move_list')
| -rw-r--r-- | bin/move_list | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/move_list b/bin/move_list index 9a9f97d83..d2d81455a 100644 --- a/bin/move_list +++ b/bin/move_list @@ -36,6 +36,7 @@ listname must be a valid mailing list name and is required. import os import sys +import string import getopt import paths @@ -67,7 +68,7 @@ def main(): usage(1) try: - listname = args[0] + listname = string.lower(args[0]) except IndexError: usage(1, 'You must supply a list name.') |
