diff options
-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 |