Commit 2c816e5b authored by Christophe Dumez's avatar Christophe Dumez

- now list is alphabetically ordered. Was upside-down before because of pysvn lib.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7353 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 31fe407f
......@@ -241,7 +241,10 @@ try:
def status(self, path, **kw):
# Since plain Python classes are not convenient in Zope, convert the objects.
return [Status(x) for x in self.client.status(path, **kw)]
status_list = [Status(x) for x in self.client.status(path, **kw)]
# XXX: seems that pysvn return a list that is upside-down, we reverse it...
status_list.reverse()
return status_list
def removeAllInList(self, list):
"""Remove all files and folders in list
......
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