From 20fdb82b2df6973988af423277f9c1ad58387a7f Mon Sep 17 00:00:00 2001 From: Ryan Hitchman Date: Thu, 11 Mar 2010 21:32:49 -0700 Subject: [PATCH] fix regex typo --- plugins/remember.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/remember.py b/plugins/remember.py index 0305c51..d29250f 100644 --- a/plugins/remember.py +++ b/plugins/remember.py @@ -62,7 +62,7 @@ def forget(inp, chan='', db=None): return "I don't know about that." -@hook.regex(r'\?(.+)') +@hook.regex(r'^\?(.+)') def question(inp, chan='', say=None, db=None): "? -- shows what data is associated with word" db_init(db)