Skip to content

Commit

Permalink
fixed issue with unlocalisation not getting applied
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Oct 3, 2022
1 parent 7302dec commit adac394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/processors/export.py
Expand Up @@ -82,7 +82,7 @@ def export_for_search(data, path):
)

# the data contains translations, currently we dont allow these in the search api
unlocalise(export)
export = unlocalise(export)

with open(path, "w", encoding="utf-8") as file:
json.dump(export, file)
Expand Down

0 comments on commit adac394

Please sign in to comment.