aboutsummaryrefslogtreecommitdiff
path: root/lisp/magit-remote.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-02-21 02:05:33 +0100
committerJonas Bernoulli <jonas@bernoul.li>2025-02-21 02:05:33 +0100
commit0f1da8d750879959b641f7765ed45592130420ef (patch)
tree7a66c28c32f33e5f45992fd69c390815df114533 /lisp/magit-remote.el
parentd4fdadc127d3d8b98e71d38675bb0438c6ae93f1 (diff)
Fix various prompts and messages
Diffstat (limited to 'lisp/magit-remote.el')
-rw-r--r--lisp/magit-remote.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/magit-remote.el b/lisp/magit-remote.el
index b8b003d..2d23d7c 100644
--- a/lisp/magit-remote.el
+++ b/lisp/magit-remote.el
@@ -281,8 +281,8 @@ Delete the symbolic-ref \"refs/remotes/<remote>/HEAD\"."
newname)
newname "master")))
(cond
- ((y-or-n-p (format "Default branch changed from `%s' to `%s' on %s.%s"
- oldname newname remote " Do the same locally? "))
+ ((y-or-n-p (format "Default branch changed from `%s' to `%s' on %s.%s?"
+ oldname newname remote " Do the same locally"))
(magit--set-default-branch newname oldname)
(magit-refresh))
((user-error "Abort")))))))