Skip to content
Snippets Groups Projects
Commit 443ba4ee authored by David Baker's avatar David Baker
Browse files

%s for strings otherwise you end up sending 'u"foo"'

parent c0aaf9fe
No related branches found
No related tags found
No related merge requests found
...@@ -160,7 +160,7 @@ class DirectoryHandler(BaseHandler): ...@@ -160,7 +160,7 @@ class DirectoryHandler(BaseHandler):
if not room_id: if not room_id:
raise SynapseError( raise SynapseError(
404, 404,
"Room alias %r not found" % (room_alias.to_string(),), "Room alias %s not found" % (room_alias.to_string(),),
Codes.NOT_FOUND Codes.NOT_FOUND
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment