1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00

Typo. it was 1400 not 1200

This commit is contained in:
Johan Andersson 2011-04-24 17:59:29 +02:00
parent d941a979f5
commit 93c12a3bd2

View File

@ -87,10 +87,10 @@ def main():
try: try:
stream = streams[int(quality)] stream = streams[int(quality)]
except ValueError: except ValueError:
print "Err: Cant find that quality. try 2400 (HD), 1200 (high), 850 (mid) or 320 (low)" print "Err: Cant find that quality. try 2400 (720p), 1400 (high), 850 (mid) or 320 (low)"
sys.exit(2) sys.exit(2)
except KeyError: except KeyError:
print "Err: Cant find that quality. try 2400 (HD), 1200 (high), 850 (mid) or 320 (low)" print "Err: Cant find that quality. try 2400 (720p), 1400 (high), 850 (mid) or 320 (low)"
sys.exit(2) sys.exit(2)
else: else:
match = re.search('pathflv=(.*)\&amp\;background', data) match = re.search('pathflv=(.*)\&amp\;background', data)