Forráskód Böngészése

bug fix with tags

Steve Nyemba 5 éve
szülő
commit
3a91a2422b
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      edi/parser.py

+ 1 - 1
edi/parser.py

@@ -77,7 +77,7 @@ def format_date(value) :
 def format_time(value):
     return ":".join([value[:2],value[2:] ])[:5]
 def format_proc(value):
-    for xchar in [':','<']
+    for xchar in [':','<'] :
         if xchar in value and len(value.split(xchar)) == 2
             _value = {"type":value.split(':')[0].strip(),"code":value.split(':')[1].strip()}
             break