diff options
-rwxr-xr-x | git-bz | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)) |