GEP18: csv loading based on English only

svn: r22620
This commit is contained in:
Benny Malengier 2013-06-28 06:36:45 +00:00
parent 9ce8403106
commit 38d7ee72f2

View File

@ -197,7 +197,11 @@ def load_srctemplate_csv(csvfile):
# .replace('[', '').replace(']','').replace('/', '_OR_')\ # .replace('[', '').replace(']','').replace('/', '_OR_')\
# .replace(',', '').replace('.', '').replace(':', '')\ # .replace(',', '').replace('.', '').replace(':', '')\
# .replace('-', '_') # .replace('-', '_')
ifield_type = int(SrcAttributeType(field_type))
#we need to force English SrcAttributeType
ifield_type = SrcAttributeType()
ifield_type.set_from_xml_str(field_type)
ifield_type = int(SrcAttributeType(ifield_type))
if ifield_type == SrcAttributeType.CUSTOM: if ifield_type == SrcAttributeType.CUSTOM:
raise NotImplementedError, "field must be a known SrcAttributeType, is " + str(SrcAttributeType(field_type)) raise NotImplementedError, "field must be a known SrcAttributeType, is " + str(SrcAttributeType(field_type))
field_type = ifield_type field_type = ifield_type