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

@@ -45,8 +45,8 @@ of OS.
Updated `hosts` files from the following locations are always unified and Updated `hosts` files from the following locations are always unified and
included: included:
Host file source | Description | Home page | Raw hosts | License | Issues Host file source | Home page | Raw hosts | License | Issues| Description
-----------------|-------------|:---------:|:---------:|:-------:|:------: -----------------|:---------:|:---------:|:-------:|:-----:|-------------
@SOURCEROWS@ @SOURCEROWS@
## Extensions ## Extensions

View File

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