Skip to content

Commit 868e74e

Browse files
committed
get_ext_fullpath returns an str
1 parent 420d356 commit 868e74e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ def sign_extension_macos(self, ext):
386386
if not config.can_sign_apple:
387387
raise EnvironmentError("Can't sign for apple. Missing information")
388388

389-
ext_fpath = self.get_ext_fullpath(ext.name)
389+
ext_fpath = pathlib.Path(self.get_ext_fullpath(ext.name))
390390

391391
print("> signing the extension")
392392
subprocess.run(

0 commit comments

Comments
 (0)