Markus Heiser 40843fe95a searx/data/engines_languages.json: sort json file (no content change)
To get meaningfull diffs, the json file has to be sorted.  Before applying any
further content patch, the json file needs a inital sort (without changing any
content).

Sorted by::

  import sys, json

  with open('engines_languages.json') as f:
      j = json.load(f)

  with open('engines_languages.json', 'w') as f:
      json.dump(j, f, indent=2, sort_keys=True)

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2020-03-01 07:56:46 +01:00
..
2020-01-30 11:16:15 +01:00
2020-02-08 11:47:39 +01:00
2020-02-08 11:47:39 +01:00
2019-11-15 09:33:15 +01:00
2020-02-08 11:47:39 +01:00
2020-02-24 07:55:14 +01:00
2017-11-01 17:02:38 +01:00
2019-11-15 09:33:15 +01:00
2020-01-30 13:39:06 +01:00