From: Ricardo Garcia Date: Tue, 22 Jul 2008 21:02:42 +0000 (+0200) Subject: Strip newline from version X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=3c53b78720fa68ca801e026d981940387a2cb733;p=youtube-dl Strip newline from version --- diff --git a/generate-index b/generate-index index 324001cae..f8f940e4c 100755 --- a/generate-index +++ b/generate-index @@ -3,7 +3,7 @@ import hashlib import subprocess 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() md5sum = hashlib.md5(data).hexdigest() sha1sum = hashlib.sha1(data).hexdigest()