Skip to content

Commit

Permalink
Correct the 0045 migration
Browse files Browse the repository at this point in the history
Signed-off-by: Tushar Goel <[email protected]>
  • Loading branch information
TG1999 committed Dec 5, 2023
1 parent 3e1de65 commit d2bc058
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def copy_qualifiers(apps, schema_editor):
updatables = []
for package in Package.objects.all():
qualifiers =package.qualifiers
normalized_string = normalize_qualifiers(qualifiers, encode=True)
normalized_string = normalize_qualifiers(qualifiers, encode=True) or ""
package.qualifiers_temp = normalized_string
updatables.append(package)

Expand Down

0 comments on commit d2bc058

Please sign in to comment.