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
No known key found for this signature in database
GPG Key ID: 8B814B914974E6AF
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
included:
Host file source | Description | Home page | Raw hosts | License | Issues
-----------------|-------------|:---------:|:---------:|:-------:|:------:
Host file source | Home page | Raw hosts | License | Issues| Description
-----------------|:---------:|:---------:|:-------:|:-----:|-------------
@SOURCEROWS@
## Extensions

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: