From 25a61fe090f4ced42f8e9beb9323b68cb35337d2 Mon Sep 17 00:00:00 2001 From: Thorsten Date: Sun, 3 Jan 2016 13:22:18 +0100 Subject: [PATCH] remove premature encoding of url parameters --- plugins/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands.py b/plugins/commands.py index f2bed7a..23d378f 100644 --- a/plugins/commands.py +++ b/plugins/commands.py @@ -748,7 +748,7 @@ def ignore_user(argv, **args): def search_the_web(argv, **args): url = 'http://api.duckduckgo.com/' params = dict( - q='+'.join(argv), + q=' '.join(argv), format='json', pretty=0, no_redirect=1,