Skip to content

Commit e4f3ad7

Browse files
authored
Corrigindo exibição da data (#71)
Mostrava: abreviação do mês + número do mês O que deveria mostrar: abreviação do mês + dia
1 parent 65216de commit e4f3ad7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pythonnobrasil/cal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __sub__(self, other):
4040

4141
@property
4242
def display_date(self):
43-
return self.start.strftime("%b %m")
43+
return self.start.strftime("%b %d")
4444

4545

4646
class Calendar:

0 commit comments

Comments
 (0)