Browse Source

bugfix: date pasing

Steve Nyemba 4 years ago
parent
commit
18457a8253
1 changed files with 2 additions and 2 deletions
  1. 2 2
      healthcareio/x12/__init__.py

+ 2 - 2
healthcareio/x12/__init__.py

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