diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-09-03 15:43:51 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-09-03 15:43:51 -0400 |
commit | f5a27f754d464c9b4d88396cbfd54ff15c891b8c (patch) | |
tree | 0bd8e51c3f03e23b2e4a9fcdb2b187df7997b4aa /coverage/control.py | |
parent | b07083717a4fb0717ebd070340cf97441fa8e515 (diff) | |
download | python-coveragepy-f5a27f754d464c9b4d88396cbfd54ff15c891b8c.tar.gz |
Fix the [paths] feature to actually work for reporting.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py index a77d805..d83e11b 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -469,7 +469,7 @@ class coverage(object): """ aliases = None if self.config.paths: - aliases = PathAliases() + aliases = PathAliases(self.file_locator) for paths in self.config.paths.values(): result = paths[0] for pattern in paths[1:]: |