From 48120bfdd2e7d1e41980d52c3345edada08b1946 Mon Sep 17 00:00:00 2001 From: James Vega Date: Mon, 1 May 2006 17:08:44 +0000 Subject: [PATCH] src/callbacks.py: Update a debug statement so it prints the proper method name. --- src/callbacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callbacks.py b/src/callbacks.py index 67a37b868..cd71e587f 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -703,7 +703,7 @@ class NestedCommandsIrcProxy(ReplyIrcProxy): assert utils.iter.startswith(L, args), \ 'getCommand must return a prefix of the args given. ' \ '(args given: %r, returned: %r)' % (args, L) - log.debug('findCallbacksForCommands: %r', cbs) + log.debug('findCallbacksForArgs: %r', cbs) cbs = [cb for (cb, L) in cbs if L == maxL] if len(maxL) == 1: # Special case: one arg determines the callback. In this case, we