Skip to content

Commit

Permalink
Topic: CommandLine
Browse files Browse the repository at this point in the history
Fix reference to format name
  • Loading branch information
Krishna Koppolu committed Feb 8, 2023
1 parent 3d9b1b2 commit d1f0c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vspec2x.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def processDataTypeTree(parser: argparse.ArgumentParser, args) -> VSSNode:
"Overlays are not yet supported in vspec struct/data type support feature")
if args.format.name != "json":
parser.error(
f"{args.format_name} format is not yet supported in vspec struct/data type support feature")
f"{args.format.name} format is not yet supported in vspec struct/data type support feature")

raise NotImplementedError(
"vspec data type processing is not yet implemented")
Expand Down

0 comments on commit d1f0c93

Please sign in to comment.