summaryrefslogtreecommitdiff
path: root/Annex/CheckIgnore.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Annex/CheckIgnore.hs')
-rw-r--r--Annex/CheckIgnore.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/CheckIgnore.hs b/Annex/CheckIgnore.hs
index d45e652bc..f2ed93543 100644
--- a/Annex/CheckIgnore.hs
+++ b/Annex/CheckIgnore.hs
@@ -18,7 +18,7 @@ import qualified Annex
checkIgnored :: FilePath -> Annex Bool
checkIgnored file = go =<< checkIgnoreHandle
where
- go Nothing = return False
+ go Nothing = return False
go (Just h) = liftIO $ Git.checkIgnored h file
checkIgnoreHandle :: Annex (Maybe Git.CheckIgnoreHandle)