From 0e3a4c37e1c847d0d1f4558f4f2a9cd6812973da Mon Sep 17 00:00:00 2001 From: James Vega Date: Tue, 27 Jan 2004 22:34:21 +0000 Subject: [PATCH] Changed the capabilities separator to ';' since we use ',' in the actual capabilities. --- src/Channel.py | 2 +- src/User.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Channel.py b/src/Channel.py index 990c82639..fd04540dc 100755 --- a/src/Channel.py +++ b/src/Channel.py @@ -497,7 +497,7 @@ class Channel(callbacks.Privmsg): c = ircdb.channels.getChannel(channel) L = list(c.capabilities) L.sort() - irc.reply('[%s]' % ', '.join(L)) + irc.reply('[%s]' % '; '.join(L)) def lobotomies(self, irc, msg, args): """takes no arguments diff --git a/src/User.py b/src/User.py index 5f1bab3dd..592443128 100755 --- a/src/User.py +++ b/src/User.py @@ -317,7 +317,7 @@ class User(callbacks.Privmsg): name = privmsgs.getArgs(args) try: user = ircdb.users.getUser(name) - irc.reply('[%s]' % ', '.join(user.capabilities)) + irc.reply('[%s]' % '; '.join(user.capabilities)) except KeyError: irc.errorNoUser()