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:
@@ -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']:
|
||||
|
||||
Reference in New Issue
Block a user