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

make it python3.4 compatible

This commit is contained in:
deadc0de6
2019-05-31 18:44:22 +02:00
parent 015874ea25
commit 3a0d0869a7

View File

@@ -198,7 +198,7 @@ class CfgAggregator:
"""
dirs = self._split_path_for_key(path)
prefix = self.dir_prefix if os.path.isdir(path) else self.file_prefix
key = self.key_sep.join([prefix, *dirs])
key = self.key_sep.join([prefix] + dirs)
return self._uniq_key(key, keys)
def _get_short_key(self, path, keys):