From: Shane Jaroch Date: Fri, 19 Apr 2024 17:51:09 +0000 (-0400) Subject: small fix listing bug values not keys X-Git-Tag: v0.2.8.dev2~11 X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=861ec5c4d747b6911757f494c15710299700808f;p=nutratech%2Fcli.git small fix listing bug values not keys --- 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: