Fix Python 2.6 support.

This commit is contained in:
Valentin Lorentz 2015-05-24 12:29:11 +02:00
parent e2b3b917e5
commit cf557b516a
1 changed files with 2 additions and 2 deletions

View File

@ -951,8 +951,8 @@ class Irc(IrcCommandDispatcher):
self.outstandingPing = False
REQUEST_CAPABILITIES = {'account-notify', 'extended-join', 'multi-prefix',
'metadata-notify', 'account-tag'}
REQUEST_CAPABILITIES = set(['account-notify', 'extended-join',
'multi-prefix', 'metadata-notify', 'account-tag'])
def _queueConnectMessages(self):
if self.zombie: