summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xgit-bz4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-bz b/git-bz
index f17495e..93a3b83 100755
--- a/git-bz
+++ b/git-bz
@@ -1682,7 +1682,7 @@ def do_apply(*args):
patches.append(patch)
for patch in patches:
- if patch.status == 'accepted-commit_now' or patch.status == 'accepted-commit_after_freeze':
+ if patch.status != 'none':
print "%d (%s) - %s" % (patch.attach_id, patch.status, patch.description)
else:
print "%d - %s" % (patch.attach_id, patch.description)
@@ -1698,7 +1698,7 @@ def do_apply(*args):
patches_by_id[patch.attach_id] = patch
if patch.status == 'committed' or patch.status == 'rejected':
template.write("#%d - %s (%s)\n" % (patch.attach_id, patch.description, patch.status))
- elif patch.status == 'accepted-commit_now' or patch.status == 'accepted-commit_after_freeze':
+ elif patch.status != 'none':
template.write("%d - %s (%s)\n" % (patch.attach_id, patch.description, patch.status))
else:
template.write("%d - %s\n" % (patch.attach_id, patch.description))