commit | bcb83b921c9f94d569ba4ce1fb2f0dd8b087efaf | [log] [tgz] |
---|---|---|
author | Christopher Dunn <cdunn2001@gmail.com> | Thu Jun 04 21:57:29 2015 -0700 |
committer | Christopher Dunn <cdunn2001@gmail.com> | Thu Jun 18 22:26:44 2015 -0500 |
tree | 01b7aca23e765ee4cde34166f8ab8d3d072722ce | |
parent | 3f05b1a89708381c6f42b3f62cb4203557cb7f35 [diff] |
fix doxybuild.py for Windows issue #287 (tylerknott@)
diff --git a/doxybuild.py b/doxybuild.py index cb27d2b..f18c9c0 100644 --- a/doxybuild.py +++ b/doxybuild.py
@@ -72,7 +72,7 @@ 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)