Skip to content

Commit

Permalink
fix...
Browse files Browse the repository at this point in the history
  • Loading branch information
dtemkin1 committed Aug 20, 2024
1 parent aca985a commit 4c93565
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion process.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ def create_error_dorm_entry(dorms: list[str], error_string: str) -> None:
)
continue

errors["DormCon"] = errors.pop(config["rename_dormcon_to"])
if errors.get(config["rename_dormcon_to"]) is not None:
errors["DormCon"] = errors.pop(config["rename_dormcon_to"])

return errors


Expand Down

0 comments on commit 4c93565

Please sign in to comment.