Skip to content

Commit

Permalink
Fixes image flip
Browse files Browse the repository at this point in the history
  • Loading branch information
AngellusMortis committed Sep 22, 2022
1 parent cf22407 commit 0826776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boundlexx/ingest/management/commands/ingest_atlas_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _process_image(world, root, name):
atlas_image_file = os.path.join(root, name)

img = Image.open(atlas_image_file)
ImageOps.flip(img)
img = ImageOps.flip(img)
img.save(atlas_image_file)

with open(atlas_image_file, "rb") as image_file:
Expand Down

0 comments on commit 0826776

Please sign in to comment.