summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTom Gilbert <tom@linuxbrit.co.uk>2005-11-04 20:16:10 +0000
committerTom Gilbert <tom@linuxbrit.co.uk>2005-11-04 20:16:10 +0000
commit304cf05b0dd3834a675806b1c828824a473a5b42 (patch)
tree6cd499a81b702ead890b6da26cde8501116beaa2 /lib
parent4ce1c479b57beecd2fb8d13a33ce91e1f272bd97 (diff)
windows hates logging to files with : in them :p
Diffstat (limited to 'lib')
-rw-r--r--lib/rbot/ircbot.rb2
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