From d5fd7b03f5932754de50d433b8f615924d783bc1 Mon Sep 17 00:00:00 2001 From: James Lu Date: Wed, 12 Sep 2018 17:18:37 -0700 Subject: [PATCH] unreal: enable slash-in-hosts, it seems to work fine --- protocols/unreal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/unreal.py b/protocols/unreal.py index b3a4f9a..46382e7 100644 --- a/protocols/unreal.py +++ b/protocols/unreal.py @@ -23,7 +23,7 @@ class UnrealProtocol(TS6BaseProtocol): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self.protocol_caps |= {'slash-in-nicks', 'underscore-in-hosts'} + self.protocol_caps |= {'slash-in-nicks', 'underscore-in-hosts', 'slash-in-hosts'} # Set our case mapping (rfc1459 maps "\" and "|" together, for example) self.casemapping = 'ascii' self.proto_ver = 4017