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/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/files.py') diff --git a/coverage/files.py b/coverage/files.py index 9bc8ac5e..400646ca 100644 --- a/coverage/files.py +++ b/coverage/files.py @@ -2,7 +2,7 @@ import os, sys -class FileLocator: +class FileLocator(object): """Understand how filenames work.""" def __init__(self): -- cgit v1.2.1