From a3e1ca9a186f429a895be8ccbbb7c73583ad7fcc Mon Sep 17 00:00:00 2001 From: Steven Armstrong Date: Thu, 13 Oct 2011 21:56:40 +0200 Subject: [PATCH] ++debug Signed-off-by: Steven Armstrong --- lib/cdist/util/fsproperty.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/cdist/util/fsproperty.py b/lib/cdist/util/fsproperty.py index d5c17d50..76e8b5ba 100644 --- a/lib/cdist/util/fsproperty.py +++ b/lib/cdist/util/fsproperty.py @@ -207,7 +207,9 @@ class DirectoryDictProperty(DirectoryDict): self.__path = path def _set_path(self, *args, **kwargs): - print("_set_path: self=%r, args=%r, kwargs=%r" % (self, args, kwargs)) + print("_set_path: self: %s" % self) + print("_set_path: args: %s" % args) + print("_set_path: kwargs: %s" % kwargs) if self.path is None: path = self.__path if callable(path):