summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index d31ebba..500cfcb 100644
--- a/main.go
+++ b/main.go
@@ -43,7 +43,7 @@ func privmsg(room string) irc.HandlerFunc {
if tofix, ok := last[line.Nick]; ok {
fixed := re(tofix, t[1:], global)
if fixed != "" && fixed != tofix {
- fmt.Fprintf(NewNotify(conn, line.Target()), "%v meant to say: %q", line.Nick, fixed)
+ fmt.Fprintf(NewNotify(conn, line.Target()), "%v meant to say: %s", line.Nick, fixed)
last[line.Nick] = fixed
}
}