Skip to content

Commit 15b32da

Browse files
authored
Fixing error message: URI {uri} does not exist (#1036)
1 parent 0b3b605 commit 15b32da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

isso/views/comments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def new(self, environ, request, uri):
350350
if resp and resp.status == 200:
351351
uri, title = parse.thread(resp.read(), id=uri)
352352
else:
353-
return NotFound('URI does not exist %s')
353+
return NotFound(f'URI {uri} does not exist')
354354
else:
355355
title = data['title']
356356

0 commit comments

Comments
 (0)