From 861ec5c4d747b6911757f494c15710299700808f Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Fri, 19 Apr 2024 13:51:09 -0400 Subject: [PATCH] small fix listing bug values not keys --- ntclient/services/bugs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntclient/services/bugs.py b/ntclient/services/bugs.py index a122cfb..d850b2c 100644 --- a/ntclient/services/bugs.py +++ b/ntclient/services/bugs.py @@ -91,7 +91,7 @@ def list_bugs(show_all: bool) -> tuple: if bool(bug["submitted"]) and not CLI_CONFIG.debug: continue # Print all bug properties (except noisy stacktrace) - print(", ".join(str(x) for x in bug if "\n" not in str(x))) + print(", ".join(str(x) for x in bug.values() if "\n" not in str(x))) print() if n_bugs_unsubmitted > 0: -- 2.52.0