Skip to content

Commit 359f12e

Browse files
committed
3.1.0
Fix a typo in the linux installation script.
1 parent 44869a7 commit 359f12e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def fetch_dependencies(python_ver='3.5', is_linux=False):
6262
os.path.join('.', 'mpegCoder', '__init__.py'),
6363
follow_symlinks=True
6464
)
65-
if not os.path.isfile(os.path.join(package_path, 'mpegCoder.pyd')):
65+
if not os.path.isfile(os.path.join(package_path, 'mpegCoder.so')):
6666
webtools.download_tarball(
6767
'cainmagi', 'FFmpeg-Encoder-Decoder-for-Python',
6868
'{0}-linux'.format(VERSION),
@@ -75,7 +75,7 @@ def fetch_dependencies(python_ver='3.5', is_linux=False):
7575
'deps-3.0.0', 'so-linux-ffmpeg_4_4.tar.xz',
7676
path=package_path, mode='auto', verbose=True, token=''
7777
)
78-
return ('mpegCoder.pyd', 'lib/*', 'lib-fix/*')
78+
return ('mpegCoder.so', 'lib/*', 'lib-fix/*')
7979
else:
8080
if not os.path.isfile(init_file_name):
8181
shutil.copyfile(

0 commit comments

Comments
 (0)