diff options
author | Joey Hess <joey@kitenet.net> | 2011-12-10 12:30:31 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-12-10 12:30:31 -0400 |
commit | eecaf424856e42290d653e0b4b4043665da18b00 (patch) | |
tree | b0b9a670f8c89956fa6e3996c2cd37786ea2cad4 /Annex | |
parent | 4200b8038a79aa788ce0b62579bd5820b7d75e3b (diff) |
no need to show, it's a string
Diffstat (limited to 'Annex')
-rw-r--r-- | Annex/Branch.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/Branch.hs b/Annex/Branch.hs index 8f0a09fd6..37237ec66 100644 --- a/Annex/Branch.hs +++ b/Annex/Branch.hs @@ -141,7 +141,7 @@ update = onceonly $ do let merge_desc = if null branches then "update" else "merging " ++ - unwords (map (show . Git.refDescribe) branches) ++ + unwords (map Git.refDescribe branches) ++ " into " ++ show name unless (null branches) $ do showSideAction merge_desc |