1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-07 07:40:44 +00:00

keep order of included profiles for #149

This commit is contained in:
deadc0de6
2019-06-02 13:31:36 +02:00
parent 8af57adfab
commit bebe6f5eae
5 changed files with 162 additions and 6 deletions

View File

@@ -95,7 +95,7 @@ class Comparator:
# content is different
funny = comp.diff_files
funny.extend(comp.funny_files)
funny = list(set(funny))
funny = utils.uniq_list(funny)
for i in funny:
lfile = os.path.join(left, i)
rfile = os.path.join(right, i)