Commit 2139d3cd authored by Christophe Dumez's avatar Christophe Dumez

- don't display unversioned files anymore


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6318 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent e9e5eef4
......@@ -293,9 +293,9 @@ class SubversionTool(UniqueObject, Folder):
somethingModified = False
for statusObj in self.status(path) :
# can be (normal, added, modified, deleted)
# can be (normal, added, modified, deleted, conflicted, unversioned)
msg_status = statusObj.getTextStatus()
if str(msg_status) != "normal" :
if str(msg_status) != "normal" and str(msg_status) != "unversioned":
somethingModified = True
full_path = statusObj.getPath()
full_path_list = full_path.split('/')[1:]
......
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