reversing the xdex

This commit is contained in:
manetta 2020-02-29 15:16:48 +01:00
parent 160a9dae95
commit d055e0b902

View File

@ -21,7 +21,7 @@ def index():
x = request.args.get('x', '').strip()
xdex, lastx = load_db('xdex.json')
entries = [x for x in xdex.keys()]
xs = sorted(xdex)
xs = sorted(xdex, reverse=True)
submit = request.args.get('submit', '').strip()