diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-22 15:21:23 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-22 15:21:23 -0400 |
commit | 26005d23bae2ab213fda694d2744ed239e412cbe (patch) | |
tree | 41d4ff61d0d59f9e96d2dc5e9537c1a409af95d5 | |
parent | 5b4272aba3ee04c89c8f2be509377e7dd68cc5f6 (diff) |
separate remote names with commas
-rw-r--r-- | Remotes.hs | 2 |
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] |