1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-05 00:59:42 +00:00

make it python3.4 compatible

This commit is contained in:
deadc0de6
2019-05-31 18:51:43 +02:00
parent 3a0d0869a7
commit 05072f2f38

View File

@@ -212,7 +212,7 @@ class CfgAggregator:
entries = []
for d in dirs:
entries.insert(0, d)
key = self.key_sep.join([prefix, *entries])
key = self.key_sep.join([prefix] + entries)
if key not in keys:
return key
return self._uniq_key(key, keys)