Remove stdout kwarg since capture_output is set

This commit is contained in:
Ferit Yiğit BALABAN
2022-03-19 20:03:07 +03:00
parent e84879eb63
commit ad97d9f0bc

View File

@@ -3,7 +3,7 @@
# Ferit Yiğit BALABAN <fyb@duck.com>, 2022 # Ferit Yiğit BALABAN <fyb@duck.com>, 2022
# #
import os.path import os.path
from subprocess import PIPE, run from subprocess import run
import sys import sys
from datetime import datetime as dt from datetime import datetime as dt
from termcolor import colored from termcolor import colored
@@ -40,9 +40,9 @@ def remove_from_left_until_slash(text):
def proc(command, cwd=''): def proc(command, cwd=''):
if cwd == '': if cwd == '':
r = run(command, shell=True, capture_output=True, stdout=PIPE, text=True) r = run(command, shell=True, capture_output=True, text=True)
else: else:
r = run(command, shell=True, capture_output=True, stdout=PIPE, text=True, cwd=cwd) r = run(command, shell=True, capture_output=True, text=True, cwd=cwd)
return r.returncode, r.stdout return r.returncode, r.stdout