Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed Jan 27, 2024
1 parent 9022fab commit 1d59134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyramid_debugtoolbar/toolbar_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def sse(request):
response.text = U_BLANK

active_request_id = request.GET.get('request_id')
client_last_visible_at = request.headers.get('Last-Event-Id', '0'))
client_last_visible_at = request.headers.get('Last-Event-Id', '0')
try:
client_last_visible_at = float(client_last_visible_at)
except Exception:
Expand Down

0 comments on commit 1d59134

Please sign in to comment.