From cc9c0792ed3853c5e23e36e2d19aa603c010e7b9 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Fri, 8 Sep 2017 15:22:31 +0200 Subject: [PATCH] print something when installed successfully --- dotdrop/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop/installer.py b/dotdrop/installer.py index 32448f8..58a9ea9 100644 --- a/dotdrop/installer.py +++ b/dotdrop/installer.py @@ -81,7 +81,7 @@ class Installer: self.log.sub('ignoring \"%s\", same content' % (dst)) return [] if ret == 0: - if not self.quiet and not self.dry and not self.comparing: + if not self.dry and not self.comparing: self.log.sub('copied %s to %s' % (src, dst)) return [(src, dst)] return []