diff --git a/gitrepo.py b/gitrepo.py index 0f662a1..c1155f3 100644 --- a/gitrepo.py +++ b/gitrepo.py @@ -9,8 +9,8 @@ from .. import loader, utils async def run_subprocess(command): process = await asyncio.create_subprocess_exec( *command, - stdout=asyncio.subprocess.DEVNULL, - stderr=asyncio.subprocess.DEVNULL + stdout=asyncio.subprocess.PIPE, + stderr=asyncio.subprocess.PIPE ) stdout, stderr = await process.communicate() return process.returncode, stdout.decode(), stderr.decode()