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

fix bug when including dotfiles

This commit is contained in:
deadc0de6
2017-09-15 16:32:50 +02:00
parent a6a4630fe0
commit 5245daa7bf

View File

@@ -132,7 +132,7 @@ class Cfg:
continue
dots = v[self.key_profiles_dots]
if len(dots) == 1 and dots == [self.key_all]:
self.prodots[k] = self.dotfiles.values()
self.prodots[k] = list(self.dotfiles.values())
else:
self.prodots[k].extend([self.dotfiles[d] for d in dots])