diff options
| author | pjenvey <devnull@localhost> | 2007-01-05 03:18:34 +0000 |
|---|---|---|
| committer | pjenvey <devnull@localhost> | 2007-01-05 03:18:34 +0000 |
| commit | c3489449893fc6facc58dd06a2ea13091d9096fa (patch) | |
| tree | 94c8bd85450992880b8796ab592896c56d69e69c /paste/auth/form.py | |
| parent | dc929a2a6569b1ec4d30e5ba4f3741c07c47b4ce (diff) | |
| download | paste-c3489449893fc6facc58dd06a2ea13091d9096fa.tar.gz | |
convert old-style classes to new-style classes
Diffstat (limited to 'paste/auth/form.py')
| -rw-r--r-- | paste/auth/form.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/auth/form.py b/paste/auth/form.py index f376cdd..0417b38 100644 --- a/paste/auth/form.py +++ b/paste/auth/form.py @@ -44,7 +44,7 @@ TEMPLATE = """\ </html> """ -class AuthFormHandler: +class AuthFormHandler(object): """ HTML-based login middleware |
