mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
Fix _get_runtime_cfg on Python 3 (#4262)
This commit is contained in:
parent
d54d3eba78
commit
97db9e646a
1 changed files with 2 additions and 1 deletions
|
|
@ -136,7 +136,8 @@ class ApacheParser(object):
|
|||
proc = subprocess.Popen(
|
||||
constants.os_constant("define_cmd"),
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE)
|
||||
stderr=subprocess.PIPE,
|
||||
universal_newlines=True)
|
||||
stdout, stderr = proc.communicate()
|
||||
|
||||
except (OSError, ValueError):
|
||||
|
|
|
|||
Loading…
Reference in a new issue