Skip to content

Commit

Permalink
Merge pull request #85 from ajm188/makes-log_keys_only-default-behavior
Browse files Browse the repository at this point in the history
Makes the default for log_keys_only True
  • Loading branch information
dnephin committed Apr 26, 2017
2 parents 102cead + b25485b commit c84ccdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion staticconf/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def load_config_data(loader_func, *args, **kwargs):
def build_loader(loader_func):
def loader(*args, **kwargs):
err_on_unknown = kwargs.pop('error_on_unknown', False)
log_keys_only = kwargs.pop('log_keys_only', False)
log_keys_only = kwargs.pop('log_keys_only', True)
err_on_dupe = kwargs.pop('error_on_duplicate', False)
flatten = kwargs.pop('flatten', True)
name = kwargs.pop('namespace', config.DEFAULT)
Expand Down

0 comments on commit c84ccdd

Please sign in to comment.