bugfix: date pasing

This commit is contained in:
Steve Nyemba 2021-05-03 13:42:38 -05:00
parent 4019158769
commit 18457a8253
1 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ class Formatters :
# #
# We have a date formatting issue # We have a date formatting issue
return value
return "-".join([year,month,day]) return "-".join([year,month,day])
def time(self,value): def time(self,value):
pass pass