From 7d770611413f13da69c7d20a174b1b370fae3d25 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Sat, 28 Mar 2020 09:33:05 +0100 Subject: [PATCH] fix pep8 --- catcli/noder.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/catcli/noder.py b/catcli/noder.py index 60b5208..e931682 100644 --- a/catcli/noder.py +++ b/catcli/noder.py @@ -98,7 +98,8 @@ class Noder: if self.hash and node.md5: md5 = self._get_hash(path) if md5 != node.md5: - self._debug('\tchange: checksum changed for \"{}\"'.format(path)) + m = '\tchange: checksum changed for \"{}\"'.format(path) + self._debug(m) return node, True self._debug('\tchange: no change for \"{}\"'.format(path)) return node, False