I am trying to use codebox to display a calendar in easygui in python3.4
My code is as follows
import easygui,calendar
cal7 = calendar.month(2018, 7)
easygui.codebox(cal7,"2018.7")
But its display results are as follows
https://i.stack.imgur.com/n8j4s.png
You can see,these numbers are out of order.
But something interesting,I run this code with wine's python 3.4, the display is correct.
My OS:Linux mint 17.3(mate)
python version:3.4.3
easygui version: (0.98.1)
How should I solve this problem? Thans for your help