瀏覽代碼

fix bug in getStationDump

Sunz3r 7 年之前
父節點
當前提交
059595eab6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ext-respondd.py

+ 1 - 1
ext-respondd.py

@@ -220,7 +220,7 @@ def getStationDump(dev_list):
     for dev in dev_list:
         try:
             # iw dev ibss3 station dump
-            output = subprocess.check_output(["iw","dev",dev,"station", "dump"], stderr=STDOUT)
+            output = subprocess.check_output(["iw","dev",dev,"station", "dump"])
             output_utf8 = output.decode("utf-8")
             lines = output_utf8.splitlines()