Merge pull request #4302 from mobrine1/patch-1

#4289 printing json output
This commit is contained in:
Matthias 2021-02-03 10:13:44 +01:00 committed by GitHub
commit de72734076
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -379,7 +379,7 @@ def main(args):
print_commands()
return
print(getattr(client, command)(*args["command_arguments"]))
print(json.dumps(getattr(client, command)(*args["command_arguments"])))
if __name__ == "__main__":