diff --git a/product/ERP5/Tool/TemplateTool.py b/product/ERP5/Tool/TemplateTool.py index 817b4577b889cb3570927f0730198a130b72083e..d0f80c15212981a400adcecb23eb67f58280ebb9 100644 --- a/product/ERP5/Tool/TemplateTool.py +++ b/product/ERP5/Tool/TemplateTool.py @@ -231,8 +231,8 @@ class TemplateTool (BaseTool): except KeyError: continue value = tar.extractfile(info).read() - if prop_type == 'text' or prop_type == 'string' - or prop_type == 'int': + if prop_type == 'text' or prop_type == 'string' \ + or prop_type == 'int': prop_dict[pid] = value elif prop_type == 'lines' or prop_type == 'tokens': prop_dict[pid[:-5]] = value.split(str(os.linesep))