diff options
| -rwxr-xr-x | cgi/options | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/options b/cgi/options index 81d82f34e..f95c4bb62 100755 --- a/cgi/options +++ b/cgi/options @@ -17,7 +17,7 @@ if len(list_info) < 2: print doc.Format() sys.exit(0) -list_name = string.lower()list_info[0] +list_name = string.lower(list_info[0]) user = list_info[1] try: |
