1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 20:19:46 +00:00

fix bug in key update

This commit is contained in:
deadc0de6
2019-01-28 20:16:17 +01:00
parent d60ec61237
commit 004fcf4007

View File

@@ -116,7 +116,7 @@ class Updater:
dotfiles = self.conf.get_dotfiles(profile)
subs = [d for d in dotfiles if d.key == key]
if not subs:
self.log.err('key \"{}\" not found!'.format(path))
self.log.err('key \"{}\" not found!'.format(key))
return None
if len(subs) > 1:
found = ','.join([d.src for d in dotfiles])