Set IRCServer.channel_types to ["#"] by default
This commit is contained in:
parent
fda223ee46
commit
0c7d088230
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue