summaryrefslogtreecommitdiff
path: root/Upgrade/V0.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Upgrade/V0.hs')
-rw-r--r--Upgrade/V0.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/Upgrade/V0.hs b/Upgrade/V0.hs
index c5310c641..c439c7caa 100644
--- a/Upgrade/V0.hs
+++ b/Upgrade/V0.hs
@@ -7,8 +7,6 @@
module Upgrade.V0 where
-import System.IO.Error (try)
-
import Common.Annex
import Annex.Content
import qualified Upgrade.V1
@@ -47,7 +45,7 @@ getKeysPresent0 dir = do
return $ map fileKey0 files
where
present d = do
- result <- try $
+ result <- tryIO $
getFileStatus $ dir ++ "/" ++ takeFileName d
case result of
Right s -> return $ isRegularFile s