Fix search inconsistency between Python versions

Closes #2012
This commit is contained in:
Bruno Barbieri
2014-10-13 04:55:00 -03:00
parent eab13982a2
commit f288162e99
6 changed files with 11 additions and 10 deletions

View File

@@ -26,7 +26,7 @@
# POSSIBILITY OF SUCH DAMAGE.
#VERSION: 1.23
#VERSION: 1.24
# Author:
# Fabien Devaux <fab AT gnux DOT info>
@@ -134,7 +134,7 @@ if __name__ == '__main__':
if cat not in CATEGORIES:
raise SystemExit('Invalid category!')
what = urllib.parse.quote('+'.join(sys.argv[3:]))
what = urllib.parse.quote(' '.join(sys.argv[3:]))
threads = []
for engine in engines_list: