Python Date de YY / MM / DD à YY-MM-DD
lastconnection = datetime.strptime("21/12/2008", "%d/%m/%Y").strftime('%Y-%m-%d')
Yucky Yacare
lastconnection = datetime.strptime("21/12/2008", "%d/%m/%Y").strftime('%Y-%m-%d')
lastconnection = datetime.datetime.strptime("21/12/2008", "%d/%m/%Y").strftime('%Y-%m-%d')
#corrected version