diff --git a/lciafmt/data/description.yaml b/lciafmt/data/description.yaml index 225ac34..70fea4e 100644 --- a/lciafmt/data/description.yaml +++ b/lciafmt/data/description.yaml @@ -1,6 +1,7 @@ base: >+ [Method][version] is built from LCIA Formatter v[LCIAfmt_version] and - flows from the Federal Elementary Flow List (FEDEFL) v[FEDEFL_version] + flows from v[FEDEFL_version] of the Federal Elementary Flow List (FEDEFL), + using fedelemflowlist v[fedelemflowlist_version]. description: >+ [Method] source file: [url] diff --git a/lciafmt/util.py b/lciafmt/util.py index ffa47e7..049a94b 100644 --- a/lciafmt/util.py +++ b/lciafmt/util.py @@ -210,6 +210,7 @@ def generate_method_description(name: str, desc = (desc .replace('[LCIAfmt_version]', pkg_version_number) .replace('[FEDEFL_version]', flow_list_specs['list_version']) + .replace('[fedelemflowlist_version]', flow_list_specs['tool_version']) .replace('[Method]', method_meta['name']) .replace('[version]', version) .replace('[citation]', method_meta['citation'])