diff options
author | Joey Hess <joey@kitenet.net> | 2013-03-18 19:11:46 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-03-18 19:11:46 -0400 |
commit | a46424e78b1cd98f87ee62a49b63acff7e6d890c (patch) | |
tree | 3b16ff5811a355d5fd0c6b0c04de22c094e0b9d5 /Assistant/Alert.hs | |
parent | 66867eb02899eaaaea8afbc79c7dc2f28ed1cbbd (diff) |
add commas to remote list
Diffstat (limited to 'Assistant/Alert.hs')
-rw-r--r-- | Assistant/Alert.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Assistant/Alert.hs b/Assistant/Alert.hs index 54ac750e9..206694031 100644 --- a/Assistant/Alert.hs +++ b/Assistant/Alert.hs @@ -238,7 +238,7 @@ commitAlert = activityAlert Nothing [Tensed "Committing" "Committed", "changes to git"] showRemotes :: [Remote] -> TenseChunk -showRemotes = UnTensed . T.unwords . map (T.pack . Remote.name) +showRemotes = UnTensed . T.intercalate ", " . map (T.pack . Remote.name) syncAlert :: [Remote] -> Alert syncAlert rs = baseActivityAlert |