diff options
author | Joey Hess <joeyh@joeyh.name> | 2017-02-28 14:41:08 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2017-02-28 14:41:08 -0400 |
commit | 4bc6ffb9184cc112356538f9a35bd3cc254d4dcd (patch) | |
tree | a8c8781e461317387639ff4223b2d2063e37daf2 | |
parent | 49082fb0815eccd0e7239a3f3825721a3199fb1f (diff) |
improve display of checking known urls
Display it as a separate action, so it ends with a newline
-rw-r--r-- | Command/ImportFeed.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Command/ImportFeed.hs b/Command/ImportFeed.hs index 521fca68e..ebc763868 100644 --- a/Command/ImportFeed.hs +++ b/Command/ImportFeed.hs @@ -112,8 +112,9 @@ getCache :: Maybe String -> Annex Cache getCache opttemplate = ifM (Annex.getState Annex.force) ( ret S.empty S.empty , do - showAction "checking known urls" + showStart "importfeed" "checking known urls" (is, us) <- unzip <$> (mapM knownItems =<< knownUrls) + showEndOk ret (S.fromList us) (S.fromList (concat is)) ) where |