From 47de788c4c4df4227596924288f4955f7052c8a9 Mon Sep 17 00:00:00 2001 From: Alex Bramley Date: Thu, 6 Oct 2011 21:37:41 +0100 Subject: [PATCH] Missed removal of conn.Debug. --- client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/client.go b/client.go index d90d8b1..a27555a 100644 --- a/client.go +++ b/client.go @@ -11,7 +11,6 @@ import ( func main() { // create new IRC connection c := irc.New("GoTest", "gotest", "GoBot") - c.Debug = true c.AddHandler("connected", func(conn *irc.Conn, line *irc.Line) { conn.Join("#go-nuts") })