Skip to content

Commit

Permalink
fix typo, update changelog (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaj committed Mar 15, 2018
1 parent 1edc46e commit f8bc2b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- [DEBIAN] use the new GPG signing key for the apt.datadoghq.com repository
- [DEBIAN] fix the status command
- [ALL IMAGES] add support for max_traces_per_second option to datadog.conf [#291](https://github.com/DataDog/docker-dd-agent/pull/291)

## 12.5.5202 / 2018-01-04

Expand Down
2 changes: 1 addition & 1 deletion config_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def set_property(self, property_name, property_value, section='Main'):
'''
Sets the given property to the given value in the configuration
'''
if not self.config.has_selection(section):
if not self.config.has_section(section):
self.config.add_section(section)
if self.config is None:
logging.error('config object needs to be created before setting properties')
Expand Down

0 comments on commit f8bc2b7

Please sign in to comment.