Rename terms_config to terms

This commit is contained in:
Peter Desmet 2017-09-30 16:27:54 -04:00
parent 8c97f73b7a
commit 9a42e1cd42
3 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ The repository structure is described below. Files/directories indicated with `G
  ├── build.py           : Build script to generate distribution files from the normative document
│ └── config : Configuration files for build.py
  ├── index.tmpl       : Template for index.html
│ └── terms_config.csv : Configuration for the recommended terms, incl. order, labels, examples
│ └── terms.csv : Configuration for the recommended terms, incl. order, labels, examples
├── .github
│ ├── CONTRIBUTING.md : Guide on how to contribute to Darwin Core

View File

@ -161,7 +161,7 @@ class DwcDigester(object):
def main():
"""Building up the html"""
config_terms_file = "./config/terms_config.csv"
config_terms_file = "./config/terms.csv"
term_versions_file = "../vocabulary/term_versions.csv"
print("Running build process using current term_versions and config_terms file...")