diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-18 05:08:37 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-18 05:08:37 +0000 |
commit | db2932b38c2aed82d8d6f6381da99b8550631333 (patch) | |
tree | d4015c44ea690a1c4fdfecbfef766c3d16677bc3 /lib | |
parent | 390915616b29ae12c5247ec03fa1ba77e10ec928 (diff) | |
download | ruby-db2932b38c2aed82d8d6f6381da99b8550631333.tar.gz ruby-db2932b38c2aed82d8d6f6381da99b8550631333.tar.xz ruby-db2932b38c2aed82d8d6f6381da99b8550631333.zip |
* lib/webrick/httpserver.rb (WEBrick::HTTPServer::unmount): remove
inpect argument from sprintf. [ruby-dev:29039]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10554 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/webrick/httpserver.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/webrick/httpserver.rb b/lib/webrick/httpserver.rb index 9441d8466..495be263b 100644 --- a/lib/webrick/httpserver.rb +++ b/lib/webrick/httpserver.rb @@ -127,7 +127,7 @@ module WEBrick end def unmount(dir) - @logger.debug(sprintf("unmount %s.", inspect, dir)) + @logger.debug(sprintf("unmount %s.", dir)) @mount_tab.delete(dir) end alias umount unmount |