Browse Source

fix bug in getStationDump

Sunz3r 7 years ago
parent
commit
059595eab6
1 changed files with 1 additions and 1 deletions
  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()