Skip to content

Commit

Permalink
fix: migrate to the same bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
martastain committed Sep 3, 2024
1 parent 1df4f4f commit 8ceaca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/bundles/migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async def _get_bundles_addons(
for row in res:
if row["name"] == source_bundle:
source_addons = row["data"].get("addons", {})
elif row["name"] == target_bundle:
if row["name"] == target_bundle:
target_addons = row["data"].get("addons", {})

if not source_addons:
Expand Down

0 comments on commit 8ceaca3

Please sign in to comment.