Skip to content

Commit

Permalink
Fix listversions order (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
wvengen committed Nov 6, 2023
1 parent b64f9df commit e14b50c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def api_listversions():
tags = repository.listtags(project['repository'])
tags = [t for t in tags if not t.startswith('sha-')]
tags.sort(key=natsort_keygen(alg=ns.NUMAFTER))
tags.reverse()
return { 'status': 'ok', 'versions': tags }

@app.get("/listspiders.json")
Expand Down

0 comments on commit e14b50c

Please sign in to comment.