aboutsummaryrefslogtreecommitdiff
path: root/IRCServer.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-17 22:08:54 +0100
committerGravatar jesopo2018-09-17 22:08:54 +0100
commit0c7d088230c445fd178e7e30678237a5ae624db6 (patch)
tree93cd49dd342abcfe164978c9fcb50a02ee90a6ec /IRCServer.py
parentImplement __str__ and __repr__ on Utils.IRCHostmask (diff)
signature
Set IRCServer.channel_types to ["#"] by default
Diffstat (limited to 'IRCServer.py')
-rw-r--r--IRCServer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/IRCServer.py b/IRCServer.py
index 6acbbb68..087e6da3 100644
--- a/IRCServer.py
+++ b/IRCServer.py
@@ -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()