diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-06-23 22:14:44 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-06-23 22:14:44 -0400 |
commit | cd25284042505a038adf75abca10e470b9da56d1 (patch) | |
tree | 0801aa21919cf40745b1ca95fe5ba3871b6976cd | |
parent | 3c4b5819aaf35fcaf81e7241b41a22737430d2ed (diff) | |
download | python-coveragepy-cd25284042505a038adf75abca10e470b9da56d1.tar.gz |
Check on the EOL chars in ,cover gold files.
-rw-r--r-- | checkeol.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkeol.py b/checkeol.py index 65843ee..68efc2f 100644 --- a/checkeol.py +++ b/checkeol.py @@ -20,5 +20,5 @@ def check_files(root, patterns): dirs.remove('.svn') check_files("coverage", ["*.py"]) -check_files("test", ["*.py"]) +check_files("test", ["*.py", "*,cover"]) check_file("setup.py") |