From 9177b39fb37d695807c0b28f1db1477f435a5466 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/codeunit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/codeunit.py') diff --git a/coverage/codeunit.py b/coverage/codeunit.py index 79ae4f0e..520774e5 100644 --- a/coverage/codeunit.py +++ b/coverage/codeunit.py @@ -48,7 +48,7 @@ def code_unit_factory(morfs, file_locator, omit_prefixes=None): return code_units -class CodeUnit: +class CodeUnit(object): """Code unit: a filename or module. Instance attributes: -- cgit v1.2.1