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/debug | |
| parent | dc929a2a6569b1ec4d30e5ba4f3741c07c47b4ce (diff) | |
| download | paste-c3489449893fc6facc58dd06a2ea13091d9096fa.tar.gz | |
convert old-style classes to new-style classes
Diffstat (limited to 'paste/debug')
| -rwxr-xr-x | paste/debug/debugapp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/paste/debug/debugapp.py b/paste/debug/debugapp.py index caabd03..190cbdd 100755 --- a/paste/debug/debugapp.py +++ b/paste/debug/debugapp.py @@ -12,7 +12,7 @@ import time __all__ = ['SimpleApplication', 'SlowConsumer'] -class SimpleApplication: +class SimpleApplication(object): """ Produces a simple web page """ @@ -22,7 +22,7 @@ class SimpleApplication: ('Content-Length', str(len(body)))]) return [body] -class SlowConsumer: +class SlowConsumer(object): """ Consumes an upload slowly... |
