mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-11 15:29:32 +01:00
Strip newline from version
This commit is contained in:
parent
bb02834692
commit
3c53b78720
@ -3,7 +3,7 @@ import hashlib
|
|||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
template = file('index.html.in', 'r').read()
|
template = file('index.html.in', 'r').read()
|
||||||
version = subprocess.Popen(['./youtube-dl', '--version'], stdout=subprocess.PIPE).communicate()[0]
|
version = subprocess.Popen(['./youtube-dl', '--version'], stdout=subprocess.PIPE).communicate()[0].strip()
|
||||||
data = file('youtube-dl', 'rb').read()
|
data = file('youtube-dl', 'rb').read()
|
||||||
md5sum = hashlib.md5(data).hexdigest()
|
md5sum = hashlib.md5(data).hexdigest()
|
||||||
sha1sum = hashlib.sha1(data).hexdigest()
|
sha1sum = hashlib.sha1(data).hexdigest()
|
||||||
|
Loading…
Reference in New Issue
Block a user