Set IRCServer.channel_types to ["#"] by default

This commit is contained in:
jesopo 2018-09-17 22:08:54 +01:00
parent fda223ee46
commit 0c7d088230

View file

@ -46,7 +46,7 @@ class Server(object):
self.mode_prefixes = collections.OrderedDict(
{"@": "o", "+": "v"})
self.channel_modes = []
self.channel_types = []
self.channel_types = ["#"]
self.case_mapping = "rfc1459"
self.last_read = time.monotonic()