diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-24 12:21:15 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-24 12:21:15 -0400 |
commit | 0eb73a211c01852cd3aa9be1c8cc5f9abdb5af32 (patch) | |
tree | 81b51481690baad7e5ccbf866b83f0b5fc11a742 /coverage/cmdline.py | |
parent | b99fbf1ff6a06309ecf6cce8d6ae97dee5626784 (diff) | |
download | python-coveragepy-git-0eb73a211c01852cd3aa9be1c8cc5f9abdb5af32.tar.gz |
Use more specific names than 'plugins', since there will be more of them in the future.
Diffstat (limited to 'coverage/cmdline.py')
-rw-r--r-- | coverage/cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py index af5ff0c5..10d0f611 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -599,7 +599,7 @@ class CoverageScript(object): print("\n%d files:" % len(filenames)) for f in filenames: line = "%s: %d lines" % (f, summary[f]) - plugin = data.plugin_name(f) + plugin = data.file_tracer(f) if plugin: line += " [%s]" % plugin print(line) |