From ff0eda1fba77b1f374c688dd8f61948f3c2e4b9b Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 27 Mar 2017 14:59:33 -0700 Subject: [PATCH] networks: flip **kwargs position to fix Python 3.4 support Reported by @koaxirc. --- plugins/networks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/networks.py b/plugins/networks.py index 2b1e473..c52af0d 100644 --- a/plugins/networks.py +++ b/plugins/networks.py @@ -101,7 +101,7 @@ def remote(irc, source, args): # Override the source option to make sure the source is valid on the local network. if 'source' in kwargs: del kwargs['source'] - irc.reply(text, **kwargs, source=irc.pseudoclient.uid) + irc.reply(text, source=irc.pseudoclient.uid, **kwargs) old_reply = remoteirc.reply