mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 08:05:31 +02:00
Fix _get_runtime_cfg on Python 3 (#4262)
This commit is contained in:
committed by
Brad Warren
parent
d54d3eba78
commit
97db9e646a
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user