diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-22 20:47:14 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-22 20:47:14 -0400 |
commit | f4e2dde8a8ceaf689ec5391174b53cb1b213ea8b (patch) | |
tree | a2865cce91287fa8fcb1aedba1c3759245bb9823 /UUID.hs | |
parent | ff38e49eb453ccfd58ce0e424aeca97389ab0100 (diff) |
fix perl refugee code
Diffstat (limited to 'UUID.hs')
-rw-r--r-- | UUID.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ prettyPrintUUIDs uuids = do return $ unwords $ map (\u -> "\t"++(prettify m u)++"\n") uuids where prettify m u = - if (0 < (length $ findlog m u)) + if (not $ null $ findlog m u) then u ++ " -- " ++ (findlog m u) else u findlog m u = M.findWithDefault "" u m |