summaryrefslogtreecommitdiff
path: root/Upgrade/V2.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-09-17 00:18:07 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-09-17 00:18:07 -0400
commite8188ea611e4c9223492203c0ec0370c3c45b225 (patch)
tree2a078993be28d1dedc38f8ab9ad193eea0ecf90e /Upgrade/V2.hs
parentba744c84a4f683e50bf4c9b8c388e3a611f7fb91 (diff)
flip catchDefaultIO
Diffstat (limited to 'Upgrade/V2.hs')
-rw-r--r--Upgrade/V2.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Upgrade/V2.hs b/Upgrade/V2.hs
index c001bc5a9..1f4a40f3c 100644
--- a/Upgrade/V2.hs
+++ b/Upgrade/V2.hs
@@ -71,7 +71,7 @@ locationLogs = do
files <- mapM tryDirContents (concat levelb)
return $ mapMaybe islogfile (concat files)
where
- tryDirContents d = catchDefaultIO (dirContents d) []
+ tryDirContents d = catchDefaultIO [] $ dirContents d
islogfile f = maybe Nothing (\k -> Just (k, f)) $
logFileKey $ takeFileName f