diff --git a/twisted/plugins/frncrosslink.py b/twisted/plugins/frncrosslink.py index f40b9c8..9dc8cf9 100755 --- a/twisted/plugins/frncrosslink.py +++ b/twisted/plugins/frncrosslink.py @@ -61,8 +61,11 @@ class FRNCrosslinkClient(FRNClient): ss, c['on'], )) - reply = '
'.join(cl) - self.sendTextMessage(client, reply) + sm = [cl[i*15:(i+1)*15] + for i in range((len(cl)+14)/15)] + for m in sm: + reply = '
'.join(m) + self.sendTextMessage(client, reply) def decodeTX(self, my_id): log.msg("Got TX ack for %s" % self.user.ON)