diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2024-09-04 10:56:33 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2024-09-04 10:56:42 +0200 |
commit | 7bdcb395d1cc7d4f279c0ad8264575d35c0014a2 (patch) | |
tree | 669636175c8d65a57b020b451b384c13f554543a /lib | |
parent | e502b49ac5c80c33878b9b030e3b9ec9b46bf173 (diff) | |
download | zorglub-7bdcb395d1cc7d4f279c0ad8264575d35c0014a2.zip zorglub-7bdcb395d1cc7d4f279c0ad8264575d35c0014a2.tar.gz |
Node : fix error404 errer msg
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zorglub/node.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zorglub/node.rb b/lib/zorglub/node.rb index 4be8a1d..335aa68 100644 --- a/lib/zorglub/node.rb +++ b/lib/zorglub/node.rb @@ -249,7 +249,7 @@ module Zorglub resp = node.response resp.status = 404 resp['content-type'] = 'text/plain' - resp.write "%<node.class.name>s mapped at %<node.map>p can't respond to : %<node.meth>p" + resp.write "#{node.class.name} mapped at #{node.map} can't respond to : #{node.meth}" resp.finish end end |