From d740faeded968de3881405d7de09dc6d2e0d7b06 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 3 Feb 2016 11:12:51 -0800 Subject: [PATCH] Typo in no cover comment --- pre_commit_hooks/check_symlinks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pre_commit_hooks/check_symlinks.py b/pre_commit_hooks/check_symlinks.py index 3fcaecc..713dd83 100644 --- a/pre_commit_hooks/check_symlinks.py +++ b/pre_commit_hooks/check_symlinks.py @@ -18,7 +18,7 @@ def check_symlinks(argv=None): if ( os.path.islink(filename) and not os.path.exists(filename) - ): # pragma no cover (symlink support required) + ): # pragma: no cover (symlink support required) print('{0}: Broken symlink'.format(filename)) retv = 1