diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-12-17 15:59:13 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-12-17 15:59:13 +0900 |
commit | ab00f5fe49f57d4ee8bc25127db9b12fbed4f54f (patch) | |
tree | edb2d68140b3e920cfff7fe663019612ab47a1c7 /tests/test_ext_graphviz.py | |
parent | b1e4036640b5d2290674e1a04f957f015d89f62d (diff) | |
parent | 7b3327234dc1f4385c175d29c68be430bba4c8f5 (diff) | |
download | sphinx-git-ab00f5fe49f57d4ee8bc25127db9b12fbed4f54f.tar.gz |
Merge branch 'stable'
Diffstat (limited to 'tests/test_ext_graphviz.py')
-rw-r--r-- | tests/test_ext_graphviz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ext_graphviz.py b/tests/test_ext_graphviz.py index aa97f4135..7d464343f 100644 --- a/tests/test_ext_graphviz.py +++ b/tests/test_ext_graphviz.py @@ -26,7 +26,7 @@ def skip_if_graphviz_not_found(fn): dot = subprocess.Popen([graphviz_dot, '-V'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) # show version - dot.wait() + dot.communicate() found = True except OSError: # No such file or directory pass |