diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-08-01 21:00:09 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-08-01 21:00:09 +0200 |
commit | 1c94f3e95da5b520ee631670a30f96e487f12ac8 (patch) | |
tree | 0e6533be81e69123ba2a33406fd3336b892eaaad /source4/scripting/python/subunit | |
parent | fff006bd84fc3fd1d9fdd22e3c20110285b2c144 (diff) | |
download | samba-1c94f3e95da5b520ee631670a30f96e487f12ac8.tar.gz samba-1c94f3e95da5b520ee631670a30f96e487f12ac8.tar.bz2 samba-1c94f3e95da5b520ee631670a30f96e487f12ac8.zip |
Use new style python classes.
(This used to be commit 2a39aae0cef310a79427feb1b85f6794ea36849a)
Diffstat (limited to 'source4/scripting/python/subunit')
-rw-r--r-- | source4/scripting/python/subunit/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/subunit/__init__.py b/source4/scripting/python/subunit/__init__.py index ac3d0c3a40..406cd8765b 100644 --- a/source4/scripting/python/subunit/__init__.py +++ b/source4/scripting/python/subunit/__init__.py @@ -376,7 +376,7 @@ def run_isolated(klass, self, result): return result -class SubunitTestRunner: +class SubunitTestRunner(object): def __init__(self, stream=sys.stdout): self.stream = stream |