Return individual key, not entire config dictionary!

This commit is contained in:
Seth Schoen 2016-08-08 17:22:53 -07:00
parent ae6ca4d4ca
commit e77a3ed7b9

View file

@ -22,4 +22,4 @@ def os_constant(key):
# based on what OS we are running under. To see an
# approach to how to handle different OSes, see the
# apache version of this file.
return CLI_DEFAULTS
return CLI_DEFAULTS[key]