Skip to content

Commit

Permalink
Fixing error message: URI {uri} does not exist (#1036)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-C authored Oct 1, 2024
1 parent 0b3b605 commit 15b32da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isso/views/comments.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def new(self, environ, request, uri):
if resp and resp.status == 200:
uri, title = parse.thread(resp.read(), id=uri)
else:
return NotFound('URI does not exist %s')
return NotFound(f'URI {uri} does not exist')
else:
title = data['title']

Expand Down

0 comments on commit 15b32da

Please sign in to comment.