Mercurial > public > mercurial-scm > evolve
diff hgext3rd/topic/__init__.py @ 6611:1dc008b6ad21 stable
topic: add a missing comma in the topic name rejection message
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Mon, 11 Dec 2023 16:27:09 -0300 |
parents | ae7c75c43f92 |
children | 94bf2f307b75 |
line wrap: on
line diff
--- a/hgext3rd/topic/__init__.py Mon Dec 11 16:15:10 2023 -0300 +++ b/hgext3rd/topic/__init__.py Mon Dec 11 16:27:09 2023 -0300 @@ -1094,7 +1094,7 @@ # Have some restrictions on the topic name just like bookmark name scmutil.checknewlabel(repo, topic, b'topic') - helptxt = _(b"topic names can only consist of alphanumeric, '-'" + helptxt = _(b"topic names can only consist of alphanumeric, '-'," b" '_' and '.' characters") try: utopic = encoding.unifromlocal(topic)