1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 22:04:44 +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():
new[key] = (k, action)
else:
new[k] = (self.action_pre, v)
new[k] = (self.action_post, v)
return new
def _norm_dotfiles(self, dotfiles):