diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-01-07 21:00:22 +0100 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-01-07 21:00:22 +0100 | 
| commit | 6e91356b5a142a9ddef44a6162a5cbcfbaa1da0d (patch) | |
| tree | 09ee30fef617399d2d982d1b160488480209636d /lib | |
| parent | ccbf275ad51734814402ece88b1e0baf973ccf80 (diff) | |
| download | zorglub-6e91356b5a142a9ddef44a6162a5cbcfbaa1da0d.zip zorglub-6e91356b5a142a9ddef44a6162a5cbcfbaa1da0d.tar.gz  | |
fix 404 errer message
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 5a9aced..c39c4b9 100644 --- a/lib/zorglub/node.rb +++ b/lib/zorglub/node.rb @@ -242,7 +242,7 @@ module Zorglub                  resp = node.response                  resp.status = 404                  resp['Content-Type'] = 'text/plain' -                resp.write "%s mapped at %p can't respond to : %p" % [ node.class.name, node.r, node.request.env['PATH_INFO'] ] +                resp.write "%s mapped at %p can't respond to : %p" % [ node.class.name, node.map, node.request.env['PATH_INFO'] ]                  resp              end              #  | 
