diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-07-08 19:46:52 +0300 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-07-08 19:46:52 +0300 |
| commit | 7dd75baf5467def63f988d83bf54d844aed212bf (patch) | |
| tree | 33a92b4ba5b3ca61fab1f4f8bdcfaaa8e0ef8c8b | |
| parent | b337d3c6c9ed9a97ea541366c7b00cc6f1617ff4 (diff) | |
Small fix
| -rw-r--r-- | modes.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ class ModesPrinter(object): font = ImageFont.truetype('cutive.ttf', 40) text = '@{} / {}'.format(self.username, self.date.strftime('%B %Y')) size = font.getsize(text) - self.draw.text(((1181 / 2) - (size[0] / 2), 1250), text, font=font, fill=(0,0,0)) + self.draw.text(((1181 / 2) - (size[0] / 2), 1220), text, font=font, fill=(0,0,0)) def draw_image(self): self.im = Image.open(BASE_IMAGE).convert('RGB') |
