From e77a3ed7b968470c908960fb45079c9a2e9e8708 Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Mon, 8 Aug 2016 17:22:53 -0700 Subject: [PATCH] Return individual key, not entire config dictionary! --- certbot-nginx/certbot_nginx/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-nginx/certbot_nginx/constants.py b/certbot-nginx/certbot_nginx/constants.py index 453266878..98f924b2b 100644 --- a/certbot-nginx/certbot_nginx/constants.py +++ b/certbot-nginx/certbot_nginx/constants.py @@ -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]