summaryrefslogtreecommitdiff
path: root/Remotes.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-22 15:21:23 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-22 15:21:23 -0400
commit26005d23bae2ab213fda694d2744ed239e412cbe (patch)
tree41d4ff61d0d59f9e96d2dc5e9537c1a409af95d5 /Remotes.hs
parent5b4272aba3ee04c89c8f2be509377e7dd68cc5f6 (diff)
separate remote names with commas
Diffstat (limited to 'Remotes.hs')
-rw-r--r--Remotes.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Remotes.hs b/Remotes.hs
index cb8f4d131..0e7dd31ea 100644
--- a/Remotes.hs
+++ b/Remotes.hs
@@ -25,7 +25,7 @@ import Core
{- Human visible list of remotes. -}
list :: [Git.Repo] -> String
-list remotes = join " " $ map Git.repoDescribe remotes
+list remotes = join ", " $ map Git.repoDescribe remotes
{- Cost ordered list of remotes that the LocationLog indicate may have a key. -}
withKey :: Key -> Annex [Git.Repo]