Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2011-10-13 21:56:40 +02:00
parent 17ce03f54d
commit a3e1ca9a18
1 changed files with 3 additions and 1 deletions

View File

@ -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):