Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
Remove superfluous TypeError
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed Sep 28, 2020
1 parent 624ab22 commit e03bae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kinto_changes/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def _handle_old_since_redirect(request):
# we want to bypass storage).
qs_since_str = request.GET.get("_since", "")
qs_since = int(qs_since_str.strip('"'))
except (TypeError, ValueError):
except ValueError:
# Will fail later during resource querystring validation.
return

Expand Down

0 comments on commit e03bae7

Please sign in to comment.