diff options
Diffstat (limited to 'test/DocTests.py')
-rwxr-xr-x | test/DocTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/DocTests.py b/test/DocTests.py index e362b980..d3434b43 100755 --- a/test/DocTests.py +++ b/test/DocTests.py @@ -184,7 +184,7 @@ class DocTests: command[findex] = test_input_dir + test_file error = False try: - verify = subprocess.check_output(command) + verify = subprocess.check_output(command, stderr=subprocess.STDOUT) except: verify = str() error = True |