From bcb83b921c9f94d569ba4ce1fb2f0dd8b087efaf Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Thu, 4 Jun 2015 21:57:29 -0700 Subject: [PATCH] fix doxybuild.py for Windows issue #287 (tylerknott@) --- doxybuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doxybuild.py b/doxybuild.py index cb27d2b..f18c9c0 100644 --- a/doxybuild.py +++ b/doxybuild.py @@ -72,7 +72,7 @@ def run_cmd(cmd, silent=False): if silent: status, output = getstatusoutput(cmd) else: - status, output = os.system(' '.join(cmd)), '' + status, output = subprocess.call(cmd), '' if status: msg = 'Error while %s ...\n\terror=%d, output="""%s"""' %(info, status, output) raise Exception(msg)