Commit d87375c1 authored by Jérome Perrin's avatar Jérome Perrin

fix indentation with tabs


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@25313 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 09168917
......@@ -264,7 +264,7 @@ try:
# Since plain Python classes are not convenient in
# Zope, convert the objects.
try:
status_list = [Status(x) for x in self.client.status(path=path, **kw)]
status_list = [Status(x) for x in self.client.status(path=path, **kw)]
except pysvn.ClientError, error:
excep = self.getException()
if excep:
......
......@@ -1083,7 +1083,7 @@ class SubversionTool(BaseTool, UniqueObject, Folder):
# can be (normal, added, modified, deleted, conflicted, unversioned)
status = str(status_obj.getTextStatus())
if str(status_obj.getReposTextStatus()) != 'none':
status = "outdated"
status = "outdated"
if (show_unmodified or status != "normal") and status != "unversioned":
something_modified = True
# Get object path
......
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