Explorar el Código

sphinx_multiversion/git: Restore Python 3.6 compatibility

Jan Holthuis hace 4 años
padre
commit
c19492b97a
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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