Commit e507f8da authored by Vincent Pelletier's avatar Vincent Pelletier

Use list's "append" method.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@18556 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b009df74
...@@ -223,7 +223,7 @@ class XMLMatrix(Folder): ...@@ -223,7 +223,7 @@ class XMLMatrix(Folder):
# during this transaction, # during this transaction,
# then we do not need to # then we do not need to
# work on it # work on it
object_id_list += [object_id] object_id_list.append(object_id)
except (ValueError, KeyError): except (ValueError, KeyError):
pass pass
......
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