Comment 11 for bug 495948

Revision history for this message
Matjaž Godec (matjaz-godec) wrote :

After long hours I found real problem with date entry in gtk client.

in widget/view/form_gtk/calendar.py You limit string length:

date1 = DT.strptime(str[:10], self.format)

Which is wrong, since You donw know what the format is.

Patch is attached.