Skip to content

Commit

Permalink
fix doxybuild.py for Windows
Browse files Browse the repository at this point in the history
issue open-source-parsers#287 (tylerknott@)
  • Loading branch information
cdunn2001 committed Jun 19, 2015
1 parent 3f05b1a commit bcb83b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doxybuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit bcb83b9

Please sign in to comment.