From ff5d83e7e6b2d7887711cdca801ff4a2f819e18e Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Mon, 25 Nov 2013 20:44:52 +0000 Subject: [PATCH] ircutils: Add 'I' to _plusRequireArguments and _minusRequireArguments. --- src/ircutils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ircutils.py b/src/ircutils.py index 4e36af5c5..428db6269 100644 --- a/src/ircutils.py +++ b/src/ircutils.py @@ -226,8 +226,8 @@ def banmask(hostmask): else: return '*!*@' + host -_plusRequireArguments = 'ovhblkqe' -_minusRequireArguments = 'ovhbkqe' +_plusRequireArguments = 'ovhblkqeI' +_minusRequireArguments = 'ovhbkqeI' def separateModes(args): """Separates modelines into single mode change tuples. Basically, you should give it the .args of a MODE IrcMsg.