BugFix git_status. STDERR to /dev/null
This commit is contained in:
parent
54f0aa4838
commit
bb6b46d7bc
@ -139,7 +139,7 @@ def module_unittest_coverage(module_folder):
|
||||
|
||||
|
||||
def module_git_status(module_folder):
|
||||
p = subprocess.Popen("git -C %s status" % module_folder, stdout=subprocess.PIPE, shell=True)
|
||||
p = subprocess.Popen("git -C %s status 2> /dev/null" % module_folder, stdout=subprocess.PIPE, shell=True)
|
||||
output = p.communicate()[0]
|
||||
p_status = p.wait()
|
||||
if p_status == 0:
|
||||
|
Loading…
x
Reference in New Issue
Block a user