Convert channel capabilities, too!

This commit is contained in:
Jeremy Fincher 2004-02-03 23:02:19 +00:00
parent 1663642227
commit a15b87cd1a
1 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,11 @@ if __name__ == '__main__':
write(fd, ' hashed %s' % u.hashed)
write(fd, ' password %s' % u.password)
for capability in u.capabilities:
try:
(channel, capability) = rsplit(capability, '.', 1)
capability = ','.join(channel, capability)
except ValueError:
pass
write(fd, ' capability %s' % capability)
for hostmask in u.hostmasks:
write(fd, ' hostmask %s' % hostmask)