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:
@@ -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):
|
||||||
|
|||||||
Reference in New Issue
Block a user