Only catch ValueError, not all exceptions

This commit is contained in:
Sebastian Lohff 2015-08-03 05:33:57 +02:00
parent 42949c1403
commit cb4ebb017f
1 changed files with 1 additions and 1 deletions

View File

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