diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-24 12:29:34 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-24 12:29:34 -0400 |
commit | 9177b39fb37d695807c0b28f1db1477f435a5466 (patch) | |
tree | 46eb1ecdf934a10e9aed25380d5fbb590b6ca9e2 /coverage/files.py | |
parent | a76d63809c96078c49d4858073aeaf5a7bd63fd5 (diff) | |
download | python-coveragepy-git-9177b39fb37d695807c0b28f1db1477f435a5466.tar.gz |
Everything should derive from object.
Diffstat (limited to 'coverage/files.py')
-rw-r--r-- | coverage/files.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |