(62 . 9)(62 . 16)
13 if speaker == "*":
14 spl = payload.split(' ', 1)
15 speaker = spl[0]
16 payload = spl[1]
17 try:
18 payload = spl[1]
19 except IndexError:
20 payload = ""
21 self_speak = True
22
23
24 ## Handle uniturds using the phf algorithm
25 payload = payload.decode('latin-1')
26 payload = payload.encode('utf-8')
27
28 ## Put in DB:
29 try:
30 exec_db('''insert into loglines (idx, t, chan, era, speaker, self, payload)