logo

searx

My custom branche(s) on searx, a meta-search engine
commit: b1b0b82a2a1d6aaa46799ad65cf75849895b8f07
parent: 524e30e001c17724983b65ccd47f1dc7be1dcd06
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Tue,  2 Dec 2014 00:09:08 +0100

[fix] version.py pep8 and py3 compatibility

Diffstat:

Msearx/version.py4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/searx/version.py b/searx/version.py @@ -21,4 +21,6 @@ VERSION_MAJOR = 0 VERSION_MINOR = 4 VERSION_BUILD = 0 -VERSION_STRING = "%d.%d.%d" % (VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD) +VERSION_STRING = "{0}.{1}.{2}".format(VERSION_MAJOR, + VERSION_MINOR, + VERSION_BUILD)