Skip to content

Commit cbf3bcf

Browse files
authored
DEVOPS-709 fix: update json serialization to handle non-serializable data in org_list (#6)
1 parent f574073 commit cbf3bcf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cumulusci/cli/org.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ def _get_org_safe(org):
493493
json_data[row_data["name"]] = row_data
494494

495495
if json_flag:
496-
click.echo(json.dumps(json_data))
496+
click.echo(json.dumps(json_data, default=str))
497497
return
498498

499499
console = Console()

0 commit comments

Comments
 (0)