bugfix: descartar output cuando el comando git se ejecuta con _run
This commit is contained in:
+1
-1
@@ -144,7 +144,7 @@ class Git:
|
|||||||
|
|
||||||
|
|
||||||
def _run(self, print: bool = False, check: bool = True):
|
def _run(self, print: bool = False, check: bool = True):
|
||||||
process = subprocess.run(self.command)
|
process = subprocess.run(self.command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
||||||
|
|
||||||
if print:
|
if print:
|
||||||
self._print_process("", "")
|
self._print_process("", "")
|
||||||
|
|||||||
Reference in New Issue
Block a user