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

fix naked actions parsed as pre action instead of post

This commit is contained in:
deadc0de6
2019-06-07 08:53:02 +02:00
parent 73696f1ee3
commit e1f1eadc1f

View File

@@ -287,7 +287,7 @@ class CfgYaml:
for key, action in v.items(): for key, action in v.items():
new[key] = (k, action) new[key] = (k, action)
else: else:
new[k] = (self.action_pre, v) new[k] = (self.action_post, v)
return new return new
def _norm_dotfiles(self, dotfiles): def _norm_dotfiles(self, dotfiles):