summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-11-03 17:10:56 -0400
committerNed Batchelder <ned@nedbatchelder.com>2012-11-03 17:10:56 -0400
commit3f9716518f854fc9396f815b1c3a8feb7c7397d4 (patch)
treee9cced3612cd9edf7a4da3ac72d646aab2b70858 /igor.py
parent9d6abb08c303e6a0cc2c08f71067c0b84977e4e6 (diff)
downloadpython-coveragepy-git-3f9716518f854fc9396f815b1c3a8feb7c7397d4.tar.gz
Don't examine .egg-info dirs.
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/igor.py b/igor.py
index d0116408..b76ffb0f 100644
--- a/igor.py
+++ b/igor.py
@@ -55,7 +55,7 @@ def do_zip_mods(args):
def do_check_eol(args):
"""Check files for incorrect newlines and trailing whitespace."""
- ignore_dirs = ['.svn', '.hg', '.tox', '.tox_kits']
+ ignore_dirs = ['.svn', '.hg', '.tox', '.tox_kits', 'coverage.egg-info']
checked = set([])
def check_file(fname, crlf=True, trail_white=True):