patch f0d8dcc0208b2d27059174c3e23ef2e9fb370971 Author: E. Bosch Date: Sun Feb 21 01:01:32 CET 2021 * irc: Fix initialization of username diff -rN -u old-irgramd-1/irc.py new-irgramd-1/irc.py --- old-irgramd-1/irc.py 2025-04-20 01:05:58.069992345 +0200 +++ new-irgramd-1/irc.py 2025-04-20 01:05:58.069992345 +0200 @@ -375,7 +375,7 @@ return self.tg.tid_to_iid[self.iid_to_tid[name]] class IRCUser(object): - def __init__(self, stream, address, irc_nick=None, username=None, realname=None): + def __init__(self, stream, address, irc_nick=None, username='', realname=None): self.stream = stream self.address = address[0] self.irc_nick = irc_nick