# HG changeset patch # User Pierre-Yves David # Date 1505488842 -7200 # Node ID 3b67642a0bc692d3862ce7af554b6492bc65a345 # Parent 0afd41ac31d23f57c117d820710f33a84b4e822e topic: update the message used with --age for empty topic This clarify things when a topic got emptied by publishing. diff -r 0afd41ac31d2 -r 3b67642a0bc6 hgext3rd/topic/__init__.py --- 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')