summaryrefslogtreecommitdiff
path: root/UUID.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-15 19:32:56 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-15 19:32:56 -0400
commite67887d98b61aeabffc9d1a231421bb00848dd13 (patch)
treed7a46b9463ecab37e0ba1fec2979f5e86305133e /UUID.hs
parent946a7f3f2128704c7b4eeea265a1375c1b60c622 (diff)
lift to IO
Diffstat (limited to 'UUID.hs')
-rw-r--r--UUID.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/UUID.hs b/UUID.hs
index 9348c7b43..3653eeec4 100644
--- a/UUID.hs
+++ b/UUID.hs
@@ -91,7 +91,7 @@ reposByUUID repos uuids = do
{- Pretty-prints a list of UUIDs
- TODO: use lookup file to really show pretty names. -}
-prettyPrintUUIDs :: [UUID] -> String
+prettyPrintUUIDs :: [UUID] -> Annex String
prettyPrintUUIDs uuids =
- unwords $ map (\u -> "\tUUID "++u++"\n") uuids
+ return $ unwords $ map (\u -> "\tUUID "++u++"\n") uuids