This commit is contained in:
Shivaram Lingamneni 2020-12-06 12:38:18 -05:00
parent 96fd1c04d6
commit d6a2c0db4a
1 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ def convert(infile):
chname = parts[1]
category = parts[2]
if category == 'private:topic:text':
out['channels'][chname]['topic'] = parts[3]
out['channels'][chname]['topic'] = line.split(maxsplit=3)[3]
elif category == 'private:topic:setter':
out['channels'][chname]['topicSetBy'] = parts[3]
elif category == 'private:topic:ts':
@ -115,7 +115,7 @@ def convert(infile):
try:
group_founder = groups_to_user[username]
print(f"WARNING: flattening GroupServ group founder {username} on {chname} to first group founder {group_founder}")
except KeyError as e:
except KeyError:
raise ValueError(f"Got channel {chname} owned by group {username} that has no founder?")
else:
username = group_founder