Commit e6299b55 authored by Nicolas Delaby's avatar Nicolas Delaby

Coding style only

 - remove blank spaces
 - wordwrap to 80 chars
 - typo


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@35797 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 62e09538
......@@ -83,7 +83,8 @@ def Base_asXML(object, root=None):
#LOG('asXML',0,'Working on: %s' % str(self.getPhysicalPath()))
object = SubElement(root, 'object',
attrib=dict(id=self.getId(), portal_type=self.getPortalType()))
attrib=dict(id=self.getId(),
portal_type=self.getPortalType()))
# We have to find every property
for prop_id in self.propertyIds():
......@@ -151,7 +152,7 @@ def Base_asXML(object, root=None):
for user_role in self.get_local_roles():
local_role_node = SubElement(object, 'local_role',
attrib=dict(id=user_role[0], type='tokens'))
#convert local_roles in string because marshaler can't do it
#convert local_roles in string because marshaller can't do it
role_list = []
for role in user_role[1]:
if isinstance(role, unicode):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment