Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tks10 committed Dec 6, 2018
1 parent a4edc35 commit 86ea11a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions util/repoter.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ def concat_images(im1, im2, palette, mode):
dst = Image.new("RGB", (im1.width + im2.width, im1.height))
dst.paste(im1, (0, 0))
dst.paste(im2, (im1.width, 0))
else:
raise NotImplementedError

return dst

Expand Down

0 comments on commit 86ea11a

Please sign in to comment.