Skip to content

Commit

Permalink
Fix crash when listing listing generators without description
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Feb 19, 2025
1 parent ea493f5 commit ea427d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fusesoc/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def gen_list(fs, args):
"{} : {} : {}".format(
core.ljust(maxlen),
generator_name,
generator_data["description"] or "<No description>",
generator_data.get("description", "<No description>"),
)
)

Expand Down

0 comments on commit ea427d4

Please sign in to comment.