summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-12-28 05:34:39 -0500
committerNed Batchelder <ned@nedbatchelder.com>2012-12-28 05:34:39 -0500
commit60a5f3e1c4d8b323dd5e7b48d06a6de50f1cf1fa (patch)
tree6a644a20291debf9116981a291c7dc165c0f732e /igor.py
parent0821638e294e092992a577c7da436d3f93bf5b16 (diff)
downloadpython-coveragepy-git-60a5f3e1c4d8b323dd5e7b48d06a6de50f1cf1fa.tar.gz
igor wasn't checking the eol in igor
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/igor.py b/igor.py
index 1af984a0..1d6c2af9 100644
--- a/igor.py
+++ b/igor.py
@@ -130,7 +130,7 @@ def do_install_egg():
"""Install the egg1 egg for tests."""
# I am pretty certain there are easier ways to install eggs...
# pylint: disable=F0401,E0611,E1101
- import distutils.core
+ import distutils.core
cur_dir = os.getcwd()
os.chdir("test/eggsrc")
distutils.core.run_setup("setup.py", ["--quiet", "bdist_egg"])
@@ -193,6 +193,7 @@ def do_check_eol():
check_files("test", ["*,cover"], trail_white=False)
check_files("test/js", ["*.js", "*.html"])
check_file("setup.py")
+ check_file("igor.py")
check_files("doc", ["*.rst"])
check_files(".", ["*.txt"])
@@ -224,7 +225,7 @@ def do_help():
def main(args):
"""Main command-line execution for igor.
-
+
Verbs are taken from the command line, and extra words taken as directed
by the arguments needed by the handler.