mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
path.join doesn't accept a list
This commit is contained in:
parent
251387660f
commit
5cefbc7dad
|
@ -145,7 +145,8 @@ class build_ext(_build_ext):
|
|||
except OSError:
|
||||
pass
|
||||
|
||||
build_prefix = pjoin(['source'] + [self.build_type] if sys.platform == 'win32' else [])
|
||||
build_prefix = ['source'] + ([self.build_type] if sys.platform == 'win32' else [])
|
||||
build_prefix = pjoin(*build_prefix)
|
||||
|
||||
def move_lib(lib_name):
|
||||
lib_filename = (shared_library_prefix + lib_name +
|
||||
|
|
Loading…
Reference in New Issue
Block a user