diff options
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... |
