Skip to content

Commit

Permalink
fix!: Fix post_work_items
Browse files Browse the repository at this point in the history
  • Loading branch information
ewuerger committed Oct 11, 2023
1 parent 39475d5 commit da6a5bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion capella2polarion/elements/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def post_work_items(ctx: dict[str, t.Any]) -> None:
"""
work_items: list[serialize.CapellaWorkItem] = []
for work_item in ctx["WORK_ITEMS"].values():
if work_item.uuid_capella not in ctx["POLARION_ID_MAP"]:
if work_item.uuid_capella in ctx["POLARION_ID_MAP"]:
continue

assert work_item is not None
Expand Down

0 comments on commit da6a5bc

Please sign in to comment.