From 39a44b97edc39a95d221118e768fad8790fb709d Mon Sep 17 00:00:00 2001 From: Sharif Nassar Date: Tue, 20 Oct 2015 22:29:35 -0700 Subject: [PATCH] Jedi mind trick on coverage tool --- letsencrypt/plugins/manual.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/letsencrypt/plugins/manual.py b/letsencrypt/plugins/manual.py index 99463c362..f7717064b 100644 --- a/letsencrypt/plugins/manual.py +++ b/letsencrypt/plugins/manual.py @@ -130,10 +130,7 @@ binary for temporary key/certificate generation.""".replace("\n", "") if self.conf("test-mode"): logger.debug("Test mode. Executing the manual command: %s", command) # sh shipped with OS X does't support echo -n - if sys.platform == "darwin": - executable = "/bin/bash" - else: - executable = None + executable = "/bin/bash" if sys.platform == "darwin" else None try: self._httpd = subprocess.Popen( command,