diff options
author | Joey Hess <joey@kitenet.net> | 2011-07-15 12:47:14 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-07-15 12:47:14 -0400 |
commit | 6c396a256c93464d726c66a95132536941871ee8 (patch) | |
tree | 7f934c9eae22a9cfd3fb1672ebd7bf6870439c81 /Command/Whereis.hs | |
parent | 185f0b687081f47d059cc0503f4f6b671868f753 (diff) |
finished hlint pass
Diffstat (limited to 'Command/Whereis.hs')
-rw-r--r-- | Command/Whereis.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/Whereis.hs b/Command/Whereis.hs index 0e4858f8b..05748e8d6 100644 --- a/Command/Whereis.hs +++ b/Command/Whereis.hs @@ -30,11 +30,11 @@ perform key = do uuids <- keyLocations key let num = length uuids showNote $ show num ++ " " ++ copiesplural num - if null $ uuids + if null uuids then stop else do pp <- prettyPrintUUIDs uuids - showLongNote $ pp + showLongNote pp showProgress next $ return True where |