# HG changeset patch # User Pierre-Yves David # Date 1471979927 -7200 # Node ID cf9414f2b5cddd65d21041527981d15a6fb6fd67 # Parent 9a5d797d25be3d474340adfbb375fd17e772722b summary: properly label the topic name in summary This should be labelled 'topic.active' so that color can pick it up properly. diff -r 9a5d797d25be -r cf9414f2b5cd hgext3rd/topic/__init__.py --- a/hgext3rd/topic/__init__.py Tue Aug 23 23:38:28 2016 +0200 +++ b/hgext3rd/topic/__init__.py Tue Aug 23 21:18:47 2016 +0200 @@ -336,7 +336,7 @@ if not t: return # i18n: column positioning for "hg summary" - ui.write(_("topic: %s\n") % t) + ui.write(_("topic: %s\n") % ui.label(t, 'topic.active')) def commitwrap(orig, ui, repo, *args, **opts): with repo.wlock():