From ecdb0099bd14fc440a09219bd3df5672208c483c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 17 Jan 2025 21:39:35 +0900 Subject: Fix FTBFS caused by 'mkpath' returning nothing Signed-off-by: Michele Calgaro --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index fa41586..8690ffa 100755 --- a/setup.py +++ b/setup.py @@ -318,6 +318,7 @@ class InstallLibpythonize(Command): return self.outfiles def mkpath(self, name, mode=0o777): - return dir_util.mkpath(name, mode, dry_run=self.dry_run) + dir_util.mkpath(name, mode, dry_run=self.dry_run) + return name main() -- cgit v1.2.3