Commit 8ef582f5 authored by FulcrandG's avatar FulcrandG
Browse files

Reversing version order in documentation of jobs

parent 1f649cfb
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -59,7 +59,8 @@ def get_description(job_path):
        return readme_file.read()

def get_changelogs(job_path, job_name):
    versions = listdir(job_path + "/" + JOB_CHANGELOG_DIR).reverse()
    versions = listdir(job_path + "/" + JOB_CHANGELOG_DIR)
    versions.reverse()
    latest = {
      "version": versions[0][0:-3],
      "url": GO2SCALE_URL + job_name + ".yml"