diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-12-28 15:40:13 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-12-28 15:40:13 -0500 |
commit | e5bb8fcdbfd5463ca93e290a5d1a7f6213dcc897 (patch) | |
tree | ae9b42896131b4a74137c20d6b0df388d6a356a7 /coverage/plugin.py | |
parent | 1adb67f0ed68737044e4f9d3ec2bbbee43b97bec (diff) | |
download | python-coveragepy-e5bb8fcdbfd5463ca93e290a5d1a7f6213dcc897.tar.gz |
Don't use %r for filenames, on windows, the backslashes go nuts.
Diffstat (limited to 'coverage/plugin.py')
-rw-r--r-- | coverage/plugin.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coverage/plugin.py b/coverage/plugin.py index 6c7de66..7d67762 100644 --- a/coverage/plugin.py +++ b/coverage/plugin.py @@ -68,10 +68,10 @@ class FileTracer(object): def has_dynamic_source_filename(self): """Does this FileTracer have dynamic source filenames? - FileTracers can provide dynamically determined filenames by implementing - dynamic_source_filename. Invoking that function is expensive. To - determine whether it should invoke it, coverage.py uses the result of - this function to know if it needs to bother invoking + FileTracers can provide dynamically determined filenames by + implementing dynamic_source_filename. Invoking that function is + expensive. To determine whether it should invoke it, coverage.py uses + the result of this function to know if it needs to bother invoking dynamic_source_filename. Returns: |