From 8df807414cb34d45ba816b595fb078c7d085597d Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 24 Oct 2009 12:29:34 -0400 Subject: Everything should derive from object. --- coverage/cmdline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coverage/cmdline.py') diff --git a/coverage/cmdline.py b/coverage/cmdline.py index c9b8a7f..0915b10 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -5,7 +5,7 @@ import optparse, sys from coverage.execfile import run_python_file -class Opts: +class Opts(object): """A namespace class for individual options we'll build parsers from.""" branch = optparse.Option( @@ -283,7 +283,7 @@ CMDS = { } -class CoverageScript: +class CoverageScript(object): """The command-line interface to Coverage.""" def __init__(self, _covpkg=None, _run_python_file=None, _help_fn=None): -- cgit v1.2.1