소스 검색

sphinx_multiversion/git: Restore Python 3.6 compatibility

Jan Holthuis 4 년 전
부모
커밋
c19492b97a
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      sphinx_multiversion/git.py

+ 3 - 1
sphinx_multiversion/git.py

@@ -86,7 +86,9 @@ def file_exists(gitroot, refname, filename):
         "-e",
         "{}:{}".format(refname, filename),
     )
-    proc = subprocess.run(cmd, cwd=gitroot, capture_output=True)
+    proc = subprocess.run(
+        cmd, cwd=gitroot, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL
+    )
     return proc.returncode == 0