diff --git a/conanfile.py b/conanfile.py index d81eae4075..e59dc1eb9c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -203,10 +203,6 @@ class CuraConan(ConanFile): else: if data["package"] not in self.dependencies: continue - print("#########################################", data["package"]) - print(dir(self.dependencies[data["package"]])) - for attr in dir(self.dependencies[data["package"]]): - print(attr, self.dependencies[data["package"]].__getattribute__(attr)) src_path = os.path.join(self.dependencies[data["package"]].package_folder, data["src"]) elif "root" in data: # get the paths relative from the install folder src_path = os.path.join(self.install_folder, data["root"], data["src"])