aboutsummaryrefslogtreecommitdiff
path: root/Command/ImportFeed.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-07-14 13:07:13 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-07-14 13:07:13 -0400
commit590254bcf6a1f6f9a574c18fed0f68d34daa2fe3 (patch)
treea64d4e11061c350fd50535980e2131cf6cc4c3a5 /Command/ImportFeed.hs
parentd242881e69dbf4195016c562365b63dd5edb7918 (diff)
include feed url in repeated problems message
Diffstat (limited to 'Command/ImportFeed.hs')
-rw-r--r--Command/ImportFeed.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/ImportFeed.hs b/Command/ImportFeed.hs
index 4bd02e062..e78588518 100644
--- a/Command/ImportFeed.hs
+++ b/Command/ImportFeed.hs
@@ -265,7 +265,7 @@ extractField k (_:rest) = extractField k rest
- Throws an error if the feed is broken, otherwise shows a warning. -}
feedProblem :: URLString -> String -> Annex ()
feedProblem url message = ifM (checkFeedBroken url)
- ( error $ message ++ " (having repeated problems with this feed!)"
+ ( error $ message ++ " (having repeated problems with feed: " ++ url ++ ")"
, warning $ "warning: " ++ message
)