Skip to content

Commit

Permalink
Merge pull request #3 from OpenDataServices/fix-keys
Browse files Browse the repository at this point in the history
Fix keys
  • Loading branch information
odscjames authored Nov 28, 2018
2 parents 6da8bf1 + f52b4ab commit e1541d9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.2.1] - 2018-11-28

### Fixed

- Fix broken key names that caused problems for IATI

## [0.2.0] - 2018-11-28

### Added
Expand Down
4 changes: 2 additions & 2 deletions libcove/lib/converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ def convert_spreadsheet(upload_dir, upload_url, file_name, file_type, lib_cove_c
}

if lib_cove_config.config.get('hashcomments'):
flattentool_options['default_lib_cove_config.configuration'] += ',hashcomments'
flattentool_options['default_configuration'] += ',hashcomments'

if xml:
flattentool_options['xml'] = True
flattentool_options['default_lib_cove_config.configuration'] += ',IDName {}'.format(lib_cove_config.config.get('id_name', 'id')) # noqa
flattentool_options['default_configuration'] += ',IDName {}'.format(lib_cove_config.config.get('id_name', 'id')) # noqa
flattentool_options['xml_schemas'] = xml_schemas
else:
flattentool_options.update({
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='libcove',
version='0.2.0',
version='0.2.1',
author='Open Data Services',
author_email='[email protected]',
url='https://github.com/OpenDataServices/lib-cove',
Expand Down

0 comments on commit e1541d9

Please sign in to comment.