From 2270bc4dc08aa1923c20c3717e88236338f1fb46 Mon Sep 17 00:00:00 2001 Message-Id: <2270bc4dc08aa1923c20c3717e88236338f1fb46.1746788008.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 12 Jun 2007 22:57:07 +0100 Subject: [PATCH] Have series show empty hidden patches as hidden rather than empty. Organization: Straylight/Edgeware From: Yann Dirson It is probably more important to show the hidden status of an empty patch, since "clean" will not delete it anyway, and the display would be ambiguous for a patch tagged "0" just before a patch tagged "!". --- stgit/commands/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stgit/commands/series.py b/stgit/commands/series.py index 402356c..fe4e468 100644 --- a/stgit/commands/series.py +++ b/stgit/commands/series.py @@ -215,4 +215,4 @@ def func(parser, options, args): __print_patch(p, branch_str, '- ', '0 ', max_len, options) for p in hidden: - __print_patch(p, branch_str, '! ', '0 ', max_len, options) + __print_patch(p, branch_str, '! ', '! ', max_len, options) -- [mdw]