From f3ffdba3412f6af4f878a8f3b834669cf6abf8c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Wieczorek?= Date: Sun, 3 Jul 2022 16:25:53 +0200 Subject: [PATCH] Fix no output --- bin/gitl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/gitl.py b/bin/gitl.py index eaf47d2..eb99b16 100755 --- a/bin/gitl.py +++ b/bin/gitl.py @@ -10,7 +10,7 @@ import sys import time -VERSION = '2.0.1.9' +VERSION = '2.0.2.10' CACHE = {} CACHE_TTL = 0.1 @@ -164,7 +164,7 @@ def execute(cls, input_data): continue try: subcommand = shlex.split(command) - run(['git'] + subcommand, stdout=subprocess.DEVNULL) + run(['git'] + subcommand, stdout=1) except ValueError: pass