aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Command/ImportFeed.hs3
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