diff options
author | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2008-07-22 23:02:42 +0200 |
---|---|---|
committer | Ricardo Garcia <sarbalap+freshmeat@gmail.com> | 2010-10-31 11:23:31 +0100 |
commit | 3c53b78720fa68ca801e026d981940387a2cb733 (patch) | |
tree | f316faf86718e8bca620a349ceff3a5df3a05b9b | |
parent | bb028346923a1b53bb8852ded546e08a1516dd49 (diff) |
Strip newline from version
-rwxr-xr-x | generate-index | 2 |
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() |