aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Thompson <daniel.thompson@linaro.org>2018-12-11 16:27:04 +0000
committerDaniel Thompson <daniel.thompson@linaro.org>2018-12-11 16:27:04 +0000
commit3b367a70113320ff6ed5ebdbfd6ee7f959541a4e (patch)
tree05ee6743526b0e75b934978c425c7bb59741e342
parentc4fd896a89fe94e917b407e6a004d9495ca0d84e (diff)
ldtstool: Describe "Pending" better in markdown sub-command
-rwxr-xr-xbin/ldtstool5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/ldtstool b/bin/ldtstool
index eb60af2..7460124 100755
--- a/bin/ldtstool
+++ b/bin/ldtstool
@@ -486,7 +486,10 @@ def do_markdown(args):
if status not in data:
continue
- print("* {}".format(status.title()))
+ if status == 'pending':
+ print("* Pending (reply sent; waiting for acknowledgement by reporter)")
+ else:
+ print("* {}".format(status.title()))
for t in data[status]:
print(" - {}".format(t.format(template)))