From 21317232a666e410095ebb087c6f045558bf1adb Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Sat, 2 Feb 2019 22:12:17 +0100 Subject: [PATCH] fix printing link status --- dotdrop/dotdrop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop/dotdrop.py b/dotdrop/dotdrop.py index c1266e0..665b711 100644 --- a/dotdrop/dotdrop.py +++ b/dotdrop/dotdrop.py @@ -360,7 +360,7 @@ def cmd_detail(opts, conf, keys=None): def _detail(dotpath, dotfile): """print details on all files under a dotfile entry""" LOG.log('{} (dst: \"{}\", link: {})'.format(dotfile.key, dotfile.dst, - dotfile.link)) + dotfile.link.name.lower())) path = os.path.join(dotpath, os.path.expanduser(dotfile.src)) if not os.path.isdir(path): template = 'no'