Skip to content

Commit

Permalink
correct variable name typo in print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbreeze413 committed Aug 25, 2021
1 parent 5f49563 commit a583a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iomuxgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def generate_iomux_register_content(io_config):
pad_num_match = re.match(r"^IO_([0-9]+)$", iomux_csv_row[0])

if pad_num_match is None:
print("ERROR: IO PAD Name in Unexpected format", iomux_iomux_csv_rowrow[0])
print("ERROR: IO PAD Name in Unexpected format", iomux_csv_row[0])
continue

pad_num = int(pad_num_match.group(1))
Expand Down

0 comments on commit a583a52

Please sign in to comment.