diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-17 21:39:35 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-17 21:39:35 +0900 |
commit | ecdb0099bd14fc440a09219bd3df5672208c483c (patch) | |
tree | f9ab65d9e371918e00e93832c9c556255974418c /setup.py | |
parent | 195afb9edf487be58006652b2dc3d9b6337a8eb0 (diff) | |
download | pytdeextensions-ecdb0099bd14fc440a09219bd3df5672208c483c.tar.gz pytdeextensions-ecdb0099bd14fc440a09219bd3df5672208c483c.zip |
Fix FTBFS caused by 'mkpath' returning nothing
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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() |