Skip to content

Commit

Permalink
Bug fix tables_get.
Browse files Browse the repository at this point in the history
  • Loading branch information
wd-mgreynolds committed Oct 23, 2023
1 parent f53a317 commit edccda2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prism/commands/tables_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def tables_get(ctx, isname, table, limit, offset, type_, format_, search):
if format_ == 'schema':
# Same as JSON, but with extraneous attributes removed.
if schema_fixup(table):
logger.info(json.dumps(schema_fixup(table), indent=2))
logger.info(json.dumps(table, indent=2))
else:
# This should never happen.
logger.error('invalid schema detected.')
Expand Down

0 comments on commit edccda2

Please sign in to comment.