From 18457a825369a3feb9174a510b766d0cb5e92c0f Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Mon, 3 May 2021 13:42:38 -0500 Subject: [PATCH] bugfix: date pasing --- healthcareio/x12/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/healthcareio/x12/__init__.py b/healthcareio/x12/__init__.py index 0be801b..ae57724 100644 --- a/healthcareio/x12/__init__.py +++ b/healthcareio/x12/__init__.py @@ -144,8 +144,8 @@ class Formatters : # # We have a date formatting issue - - return "-".join([year,month,day]) + return value + return "-".join([year,month,day]) def time(self,value): pass def sv3(self,value):