소스 검색

bugfix: date pasing

Steve Nyemba 4 년 전
부모
커밋
18457a8253
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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
-           
-            return "-".join([year,month,day])
+            return value
+        return "-".join([year,month,day])
     def time(self,value):
         pass
     def sv3(self,value):