From 6af573ac848eedf0d76fe3fe2c6ff49d5a6e41f0 Mon Sep 17 00:00:00 2001 From: Dominik Rimpf Date: Fri, 9 Mar 2018 13:24:54 +0100 Subject: [PATCH] [FIX] Changed execution order of dotfiles Dotfiles now get executed ascending (key), e.g. 00 to 99 or aa to zz --- dotdrop/config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dotdrop/config.py b/dotdrop/config.py index 29a5c20..3009500 100644 --- a/dotdrop/config.py +++ b/dotdrop/config.py @@ -241,8 +241,7 @@ class Cfg: if profile not in self.prodots: return [] return sorted(self.prodots[profile], - key=lambda x: str(x.key), - reverse=True) + key=lambda x: str(x.key)) def get_profiles(self): """ returns all defined profiles """