Entropy/FileUpdatesInterface fix a small bug in scanfs causing duplicated names (not full paths) to be discarded

git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1915 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
lxnay
2008-05-03 16:55:52 +00:00
parent 8c1a26d270
commit f0a885748f
+2 -2
View File
@@ -5234,9 +5234,9 @@ class FileUpdatesInterface:
if item[9] != "_": # no valid format provided
continue
if item in name_cache:
if filepath in name_cache:
continue # skip, already done
name_cache.add(item)
name_cache.add(filepath)
mydict = self.generate_dict(filepath)
if mydict['automerge']: