Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe6e87a5 authored by Adam Tauber's avatar Adam Tauber
Browse files

[fix] replace obsolete string.join function

parent 27e95846
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -22,7 +22,6 @@ from searx.engines import (
    categories, engines, engine_shortcuts
)
import re
import string
import sys

if sys.version_info[0] == 3:
@@ -143,7 +142,7 @@ class RawTextQuery(object):

    def getFullQuery(self):
        # get full querry including whitespaces
        return string.join(self.query_parts, '')
        return u''.join(self.query_parts)


class SearchQuery(object):