summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-17 21:39:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-01-17 21:39:35 +0900
commitecdb0099bd14fc440a09219bd3df5672208c483c (patch)
treef9ab65d9e371918e00e93832c9c556255974418c /setup.py
parent195afb9edf487be58006652b2dc3d9b6337a8eb0 (diff)
downloadpytdeextensions-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-xsetup.py3
1 files changed, 2 insertions, 1 deletions
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()