Move the source file description column to the end of the row.

This commit is contained in:
Steven Black
2022-06-09 23:10:03 -04:00
parent 5fce389e07
commit 959c2ed25f
2 changed files with 5 additions and 5 deletions

View File

@@ -52,16 +52,16 @@ def main():
row_defaults = {
"name": "",
"description": "",
"homeurl": "",
"url": "",
"license": "",
"issues": "",
"description": "",
}
t = Template(
"${name} | ${description} |[link](${homeurl})"
" | [raw](${url}) | ${license} | [issues](${issues})"
"${name} |[link](${homeurl})"
" | [raw](${url}) | ${license} | [issues](${issues})| ${description}"
)
for key in keys: