aboutsummaryrefslogtreecommitdiff
path: root/generate-index
diff options
context:
space:
mode:
Diffstat (limited to 'generate-index')
-rwxr-xr-xgenerate-index2
1 files changed, 1 insertions, 1 deletions
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()