# HG changeset patch # User Pierre-Yves David # Date 1457980800 0 # Node ID 3b42478ef01736f0ecb79079aa505a1b0d37eade # Parent f52c02bf47b7630e5343e4feb5d5f6fb6f115e84 stack: add "t" prefix to index in the output This make the existance and meaning of "t2" reference clearer. diff --git a/hgext3rd/topic/stack.py b/hgext3rd/topic/stack.py --- a/hgext3rd/topic/stack.py +++ b/hgext3rd/topic/stack.py @@ -20,7 +20,7 @@ raise error.Abort(_('no active topic to list')) for idx, r in enumerate(getstack(repo, topic)): # super crude initial version - l = "%d: %s\n" % (idx, repo[r].description().splitlines()[0]) + l = "t%d: %s\n" % (idx, repo[r].description().splitlines()[0]) ui.write(l) # Copied from evolve 081605c2e9b6 diff --git a/tests/test-topic-stack.t b/tests/test-topic-stack.t --- a/tests/test-topic-stack.t +++ b/tests/test-topic-stack.t @@ -57,10 +57,10 @@ $ hg topic * foo $ hg topic --list - 0: c_c - 1: c_d - 2: c_e - 3: c_f + t0: c_c + t1: c_d + t2: c_e + t3: c_f error case, nothing to list @@ -104,7 +104,7 @@ o 0 default {} draft c_a $ hg topic --list - 0: c_c - 1: c_d - 2: c_e - 3: c_f + t0: c_c + t1: c_d + t2: c_e + t3: c_f