1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-05 14:58:48 +00:00

[FIX] Changed execution order of dotfiles

Dotfiles now get executed ascending (key), e.g. 00 to 99 or aa to zz
This commit is contained in:
Dominik Rimpf
2018-03-09 13:24:54 +01:00
parent b87c90d2f4
commit 6af573ac84

View File

@@ -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 """