Skip to content

Commit

Permalink
Fix no output
Browse files Browse the repository at this point in the history
  • Loading branch information
Łukasz Wieczorek committed Jul 3, 2022
1 parent b602fb6 commit f3ffdba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/gitl.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import sys
import time

VERSION = '2.0.1.9'
VERSION = '2.0.2.10'

CACHE = {}
CACHE_TTL = 0.1
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit f3ffdba

Please sign in to comment.