chiark
/
gitweb
/
~mdw
/
stgit
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
a02ba40
)
Have series show empty hidden patches as hidden rather than empty.
author
Yann Dirson
<ydirson@altern.org>
Tue, 12 Jun 2007 21:57:07 +0000
(22:57 +0100)
committer
Catalin Marinas
<catalin.marinas@gmail.com>
Tue, 12 Jun 2007 21:57:07 +0000
(22:57 +0100)
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
patch
|
blob
|
blame
|
history
diff --git
a/stgit/commands/series.py
b/stgit/commands/series.py
index 402356ccae3a53c458d270e5953a976c9806b171..fe4e4683fcab8b97167e2b6adb1b25bf981fd4aa 100644
(file)
--- 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)
for p in hidden:
- __print_patch(p, branch_str, '! ', '
0
', max_len, options)
+ __print_patch(p, branch_str, '! ', '
!
', max_len, options)