diff options
author | Tom Gilbert <tom@linuxbrit.co.uk> | 2005-11-04 20:16:10 +0000 |
---|---|---|
committer | Tom Gilbert <tom@linuxbrit.co.uk> | 2005-11-04 20:16:10 +0000 |
commit | 304cf05b0dd3834a675806b1c828824a473a5b42 (patch) | |
tree | 6cd499a81b702ead890b6da26cde8501116beaa2 /lib | |
parent | 4ce1c479b57beecd2fb8d13a33ce91e1f272bd97 (diff) |
windows hates logging to files with : in them :p
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rbot/ircbot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb index 89037255..d07c4977 100644 --- a/lib/rbot/ircbot.rb +++ b/lib/rbot/ircbot.rb @@ -302,7 +302,7 @@ class IrcBot } @client[:unknown] = proc {|data| #debug "UNKNOWN: #{data[:serverstring]}" - log data[:serverstring], ":unknown" + log data[:serverstring], ".unknown" } end |