]> Nutra Git (v2) - nutratech/cli.git/commitdiff
small fix listing bug values not keys
authorShane Jaroch <chown_tee@proton.me>
Fri, 19 Apr 2024 17:51:09 +0000 (13:51 -0400)
committerShane Jaroch <chown_tee@proton.me>
Fri, 19 Apr 2024 17:51:09 +0000 (13:51 -0400)
ntclient/services/bugs.py

index a122cfbf08cee34cb438da9ca41a3ce8e917b773..d850b2c4623d3a9b4d1d994fdaf799d83d7c488f 100644 (file)
@@ -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: