oops.. used abs instead of fabs from math library

This commit is contained in:
pnispel 2014-05-23 10:36:38 -07:00
Родитель 076a5b6db9
Коммит d3f003c3a8
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -38,8 +38,8 @@ class LogSliceView(viewsets.ViewSet):
gz_file = None
try:
start_line = math.abs(int(request.QUERY_PARAMS.get("start_line", 0)))
end_line = math.abs(int(request.QUERY_PARAMS.get("end_line", 0)))
start_line = math.fabs(int(request.QUERY_PARAMS.get("start_line", 0)))
end_line = math.fabs(int(request.QUERY_PARAMS.get("end_line", 0)))
except Exception as e:
return Response("parameters could not be converted to integers", 400)