# HG changeset patch # User Miguel Ángel Bárcena Rodríguez # Date 1385639682 -3600 # Node ID 878159a13494131896855e65d1514c98420d2c52 # Parent a7b9f7e7dfa4909803fa34dd08952420465dc735 bug fix: except raise when parses X records importing fiebdc files diff -r a7b9f7e7dfa4 -r 878159a13494 Generic/fiebdc.py --- a/Generic/fiebdc.py Sat Nov 02 19:26:09 2013 +0100 +++ b/Generic/fiebdc.py Thu Nov 28 12:54:42 2013 +0100 @@ -1590,8 +1590,8 @@ while _ti_index < len(_field_2_list)-2: _ti_code = _field_2_list[_ti_index] _ti_value = _field_2_list[_ti_index+1] - if _ti_code != u"" and _ty_value != u"": - _ti_dict[_ti_code.encode("utf8")] = _ty_value.encode("utf8") + if _ti_code != u"" and _ti_value != u"": + _ti_dict[_ti_code.encode("utf8")] = _ti_value.encode("utf8") _ti_index = _ti_index + 2 self.__budget.setTecnicalInformation(_record_code.encode("utf8"), _ti_dict) self.num_valid_record = self.num_valid_record +1 diff -r a7b9f7e7dfa4 -r 878159a13494 Generic/globalVars.py --- a/Generic/globalVars.py Sat Nov 02 19:26:09 2013 +0100 +++ b/Generic/globalVars.py Thu Nov 28 12:54:42 2013 +0100 @@ -24,7 +24,7 @@ import sys version = "pyArq Presupuestos v0.0.0" -changeset = 17 +changeset = 18 baseversion = 0 # path: Paths where find the program files needed