Skip to content

Commit

Permalink
Merge pull request #170 from oleorhagen/master
Browse files Browse the repository at this point in the history
fix wrong dictionary access
  • Loading branch information
olehermanse authored Jan 8, 2024
2 parents 70ddb63 + cbf88d7 commit e67b3bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfbs/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def status_command() -> int:
print("Description: %s" % config["description"])
print("File: %s" % cfbs_filename())

modules = config["build"]
modules = config.get("build")
if not modules:
return 0
print("\nModules:")
Expand Down

0 comments on commit e67b3bf

Please sign in to comment.