diff options
author | bwarsaw <> | 2003-12-01 00:57:16 +0000 |
---|---|---|
committer | bwarsaw <> | 2003-12-01 00:57:16 +0000 |
commit | 34cb3a8076dfee0954560f49c563f1fe4d2ec762 (patch) | |
tree | 771f0ada3604a17def0757252326970e22610f3d /Mailman | |
parent | 878097bf4a7d50ad9658544461474dfa48f252bd (diff) | |
download | mailman2-34cb3a8076dfee0954560f49c563f1fe4d2ec762.tar.gz mailman2-34cb3a8076dfee0954560f49c563f1fe4d2ec762.tar.xz mailman2-34cb3a8076dfee0954560f49c563f1fe4d2ec762.zip |
True/False where appropriate.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py index bf4effbc..43665d9d 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -355,7 +355,7 @@ def check_global_password(response, siteadmin=True): def websafe(s): - return cgi.escape(s, quote=1) + return cgi.escape(s, quote=True) def nntpsplit(s): |