diff options
Diffstat (limited to 'Annex/CatFile.hs')
-rw-r--r-- | Annex/CatFile.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Annex/CatFile.hs b/Annex/CatFile.hs index 88c498d31..98d1a219f 100644 --- a/Annex/CatFile.hs +++ b/Annex/CatFile.hs @@ -37,8 +37,8 @@ catObjectDetails ref = do catFileHandle :: Annex Git.CatFile.CatFileHandle catFileHandle = maybe startup return =<< Annex.getState Annex.catfilehandle - where - startup = do - h <- inRepo Git.CatFile.catFileStart - Annex.changeState $ \s -> s { Annex.catfilehandle = Just h } - return h + where + startup = do + h <- inRepo Git.CatFile.catFileStart + Annex.changeState $ \s -> s { Annex.catfilehandle = Just h } + return h |