ソースを参照

BugFix git_status. STDERR to /dev/null

master
Dirk Alders 4年前
コミット
bb6b46d7bc
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      module_status.py

+ 1
- 1
module_status.py ファイルの表示

@@ -139,7 +139,7 @@ def module_unittest_coverage(module_folder):
139 139
 
140 140
 
141 141
 def module_git_status(module_folder):
142
-    p = subprocess.Popen("git -C %s status" % module_folder, stdout=subprocess.PIPE, shell=True)
142
+    p = subprocess.Popen("git -C %s status 2> /dev/null" % module_folder, stdout=subprocess.PIPE, shell=True)
143 143
     output = p.communicate()[0]
144 144
     p_status = p.wait()
145 145
     if p_status == 0:

読み込み中…
キャンセル
保存