diff options
| author | ianb <devnull@localhost> | 2006-10-20 19:46:49 +0000 |
|---|---|---|
| committer | ianb <devnull@localhost> | 2006-10-20 19:46:49 +0000 |
| commit | aaca5bdf2e660ef9ecff4c06c7ecbaa14518079f (patch) | |
| tree | 1916e3eb0f70e6a6e480fb67825b9bce43e03fff /paste/auth/cookie.py | |
| parent | 96644d94fd727e919d6a3d52998f276c90cbf770 (diff) | |
| download | paste-aaca5bdf2e660ef9ecff4c06c7ecbaa14518079f.tar.gz | |
Several name problems, small bugs, extra imports caught by pyflakes
Diffstat (limited to 'paste/auth/cookie.py')
| -rw-r--r-- | paste/auth/cookie.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/auth/cookie.py b/paste/auth/cookie.py index ebb9aba..df63329 100644 --- a/paste/auth/cookie.py +++ b/paste/auth/cookie.py @@ -373,7 +373,7 @@ def make_auth_cookie( try: maxlen = int(maxlen) except ValueError: - raise ValieError('Bad value for maxlen (must be int): %r' + raise ValueError('Bad value for maxlen (must be int): %r' % maxlen) return AuthCookieHandler( app, cookie_name=cookie_name, scanlist=scanlist, |
