EdupageAPI / edupage-api

A python library for accessing your Edupage account
https://edupageapi.github.io/edupage-api/
GNU General Public License v3.0
67 stars 13 forks source link

Month instead of day, day instead of month #14

Closed XtramCZ closed 3 years ago

XtramCZ commented 3 years ago
homework = edupage.get_homework()
    for hw in homework:
        print(hw.due_date.day, hw.due_date.month)

Printed: 04 14 (example, 04 is month, 14 is day) so .day is month and .month is day version: 0.8

BelKed commented 3 years ago

I can reproduce this bug and I'm working on fix...