Only catch ValueError, not all exceptions

tests
Sebastian Lohff 9 years ago
parent 42949c1403
commit cb4ebb017f

@ -102,7 +102,7 @@ class FileBaseHandler(BaseHTTPServer.BaseHTTPRequestHandler):
try: try:
fromto[0] = int(fromto[0]) fromto[0] = int(fromto[0])
fromto[1] = int(fromto[1]) fromto[1] = int(fromto[1])
except: except ValueError:
return (False, None) return (False, None)
if fromto[0] >= fileLength or fromto[0] < 0 or fromto[1] >= fileLength or fromto[1]-fromto[0] < 0: if fromto[0] >= fileLength or fromto[0] < 0 or fromto[1] >= fileLength or fromto[1]-fromto[0] < 0:

Loading…
Cancel
Save