summaryrefslogtreecommitdiff
path: root/paste/debug
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2007-01-05 03:18:34 +0000
committerpjenvey <devnull@localhost>2007-01-05 03:18:34 +0000
commitc3489449893fc6facc58dd06a2ea13091d9096fa (patch)
tree94c8bd85450992880b8796ab592896c56d69e69c /paste/debug
parentdc929a2a6569b1ec4d30e5ba4f3741c07c47b4ce (diff)
downloadpaste-c3489449893fc6facc58dd06a2ea13091d9096fa.tar.gz
convert old-style classes to new-style classes
Diffstat (limited to 'paste/debug')
-rwxr-xr-xpaste/debug/debugapp.py4
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...