Made list not show the full name of the registry entry.

This commit is contained in:
Jeremy Fincher 2004-01-22 20:14:43 +00:00
parent f1ac644013
commit 734fc710e8

View File

@ -96,7 +96,7 @@ class Config(callbacks.Privmsg):
group = getWrapper(name) group = getWrapper(name)
if hasattr(group, 'getValues'): if hasattr(group, 'getValues'):
try: try:
L = zip(*group.getValues())[0] L = zip(*group.getValues(fullNames=False))[0]
irc.reply(utils.commaAndify(L)) irc.reply(utils.commaAndify(L))
except TypeError: except TypeError:
irc.error('There don\'t seem to be any values in %r' % name) irc.error('There don\'t seem to be any values in %r' % name)