summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f268b1d)
raw | patch | inline | side by side (parent: f268b1d)
author | jlgijsbers <jlgijsbers@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sat, 6 Sep 2003 09:45:30 +0000 (09:45 +0000) | ||
committer | jlgijsbers <jlgijsbers@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sat, 6 Sep 2003 09:45:30 +0000 (09:45 +0000) |
problematic when matching registration confirmation emails.
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1858 57a73879-2fb5-44c3-a270-3262357dd7e2
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1858 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/cgi/client.py | patch | blob | history |
diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py
index 694ec1b13fa3da6c14a2cda6252fb77a1c8d610b..ffdd76114f8d412360370ccb0d15001e570060cc 100644 (file)
--- a/roundup/cgi/client.py
+++ b/roundup/cgi/client.py
-# $Id: client.py,v 1.133 2003-09-06 07:27:30 jlgijsbers Exp $
+# $Id: client.py,v 1.134 2003-09-06 09:45:30 jlgijsbers Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
SENDMAILDEBUG = os.environ.get('SENDMAILDEBUG', '')
# used by a couple of routines
-chars = string.letters+string.digits
+chars = string.ascii_letters+string.digits
# XXX actually _use_ FormError
class FormError(ValueError):