Mercurial > evolve
changeset 2933:3b67642a0bc6
topic: update the message used with --age for empty topic
This clarify things when a topic got emptied by publishing.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Fri, 15 Sep 2017 17:20:42 +0200 |
parents | 0afd41ac31d2 |
children | e16981ccfca9 |
files | hgext3rd/topic/__init__.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext3rd/topic/__init__.py Wed Aug 30 17:32:32 2017 +0200 +++ b/hgext3rd/topic/__init__.py Fri Sep 15 17:20:42 2017 +0200 @@ -749,7 +749,7 @@ fm.data(active=active) fm.plain(' (') if timevalue == -1: - timestr = 'not yet touched' + timestr = 'empty and active' else: timestr = templatefilters.age(timedict[timevalue][0]) fm.write('lasttouched', '%s', timestr, label='topic.list.time')