From 5245daa7bf3cf58f143bfb3a9990608a787601de Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Fri, 15 Sep 2017 16:32:50 +0200 Subject: [PATCH] fix bug when including dotfiles --- dotdrop/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop/config.py b/dotdrop/config.py index 1759f04..43e5c72 100644 --- a/dotdrop/config.py +++ b/dotdrop/config.py @@ -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])